3 writes to Lifetime
System.IdentityModel (3)
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (2)
270rst.Lifetime = WSTrustSerializationHelper.ReadLifetime(reader, trustConstants); 1470rstr.Lifetime = WSTrustSerializationHelper.ReadLifetime(reader, trustConstants);
System\IdentityModel\Tokens\SecurityTokenDescriptor.cs (1)
100response.Lifetime = lifetime;
9 references to Lifetime
System.IdentityModel (6)
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (4)
773if (rst.Lifetime != null) 775requestSerializer.WriteXmlElement(writer, trustConstants.Elements.Lifetime, rst.Lifetime, rst, context); 1755if (rstr.Lifetime != null) 1757responseSerializer.WriteXmlElement(writer, trustConstants.Elements.Lifetime, rstr.Lifetime, rstr, context);
System\IdentityModel\SecurityTokenService.cs (2)
738_tokenDescriptor.Lifetime = GetTokenLifetime(request.Lifetime); 865_tokenDescriptor.Lifetime = GetTokenLifetime(request == null ? null : request.Lifetime);
System.ServiceModel (3)
System\ServiceModel\Security\WSTrustChannel.cs (3)
495if (response.Lifetime != null) 497created = response.Lifetime.Created; 498expires = response.Lifetime.Expires;