LocalClientSecuritySettings.MaxClockSkew Property

Definition

Gets or sets the maximum allowable time difference between the system clocks of the two parties that are communicating.

public:
 property TimeSpan MaxClockSkew { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan MaxClockSkew { get; set; }
member this.MaxClockSkew : TimeSpan with get, set
Public Property MaxClockSkew As TimeSpan

Property Value

A TimeSpan that represents the maximum allowable time difference between the system clocks of the two parties that are communicating. The default is 5 minutes.

Exceptions

The property is set to a value less than 0.

Examples

This example shows how to get the MaxClockSkew value.

TimeSpan timeSpan = settings.MaxClockSkew;
Dim timeSpan As TimeSpan = settings.MaxClockSkew

Remarks

Messages between systems whose clocks' difference exceeds the value specified in this property are rejected.

This property is used in conjunction with the message time stamp verification and the ReplayWindow property.

For more information, see How to: Set a Max Clock Skew.

Applies to

See also