Click or drag to resize

SdkConfigurationLiveFeedMaxTimeSkew Property

Maximum time difference between local time and server time. When detected time skew is over this limit the connection to the server will be immediately dropped and a reconnect attempted. Usual time skew values should be:
  1. 10 minutes when no time synchronization is performed
  2. 5 seconds (if NTP protocol is used for time synchronization)
  3. TimeSpan.Zero means the setting is off (which is the default in SafeMode)

Namespace: Sportradar.SDK.Services.SdkConfiguration
Assembly: SdkConfiguration (in SdkConfiguration.dll) Version: 2.28.0.0
Syntax
C#
[TypeConverterAttribute(typeof(TimeSpanConverter))]
public TimeSpan MaxTimeSkew { get; }

Property Value

TimeSpan
Remarks
BEWARE! Low values might prevent a successful connection to the server or cause undesired disconnecting / reconnecting. That in turn might lead to connection blocking on the server side.
See Also