8 references to Add
System.ServiceModel.Primitives (8)
Internals\System\Runtime\TimeoutHelper.cs (1)
131return Add(time, TimeSpan.Zero - timeout);
System\ServiceModel\Security\InMemoryNonceCache.cs (1)
78DateTime expirationTime = TimeoutHelper.Add(DateTime.UtcNow, _cachingTimeSpan);
System\ServiceModel\Security\IssuanceTokenProviderBase.cs (2)
313DateTime effectiveExpirationTime = TimeoutHelper.Add(serviceToken.ValidFrom.ToUniversalTime(), new TimeSpan(effectiveTicksInterval)); 314DateTime maxCachingTime = TimeoutHelper.Add(serviceToken.ValidFrom.ToUniversalTime(), MaxServiceTokenCachingTime);
System\ServiceModel\Security\SecuritySessionClientSettings.cs (3)
959DateTime keyRenewalTime1 = TimeoutHelper.Add(token.ValidFrom, tokenValidityInterval); 960DateTime keyRenewalTime2 = TimeoutHelper.Add(token.ValidFrom, Settings._keyRenewalInterval); 989_keyRolloverTime = TimeoutHelper.Add(DateTime.UtcNow, Settings.KeyRolloverInterval);
System\ServiceModel\Security\SecurityTimestamp.cs (1)
175if (CreationTimeUtc >= TimeoutHelper.Add(now, allowedClockSkew))