LocalServiceSecuritySettings.MaxClockSkew Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.