2 writes to ReplayWindow
System.ServiceModel (2)
System\ServiceModel\Channels\SecurityBindingElement.cs (2)
590factory.ReplayWindow = this.LocalClientSettings.ReplayWindow; 603factory.ReplayWindow = this.LocalServiceSettings.ReplayWindow;
5 references to ReplayWindow
System.ServiceModel (5)
System\ServiceModel\Security\AcceptorSessionSymmetricTransportSecurityProtocol.cs (1)
106securityHeader.SetTimeParameters(this.Factory.NonceCache, this.Factory.ReplayWindow, this.Factory.MaxClockSkew);
System\ServiceModel\Security\MessageSecurityProtocol.cs (1)
431securityHeader.SetTimeParameters(this.factory.NonceCache, this.factory.ReplayWindow, this.factory.MaxClockSkew);
System\ServiceModel\Security\SecurityProtocolFactory.cs (2)
1073if (this.MaxClockSkew == TimeSpan.MaxValue || this.ReplayWindow == TimeSpan.MaxValue) 1082this.nonceCache = new InMemoryNonceCache(this.ReplayWindow + this.MaxClockSkew + this.MaxClockSkew, this.MaxCachedNonces);
System\ServiceModel\Security\TransportSecurityProtocol.cs (1)
261securityHeader.SetTimeParameters(factory.NonceCache, factory.ReplayWindow, factory.MaxClockSkew);