LocalServiceSecuritySettings.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 maxClockSkew = settings.MaxClockSkew;
Dim maxClockSkew As TimeSpan = settings.MaxClockSkew

Remarks

The default value for this property is 5 minutes.

Messages that do not pass the send-time test are rejected.

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

Applies to