4 types derived from CookieTransform
System.IdentityModel (4)
System\IdentityModel\DeflateCookieTransform.cs (1)
16public sealed class DeflateCookieTransform : CookieTransform
System\IdentityModel\ProtectedDataCookieTransform.cs (1)
19public sealed class ProtectedDataCookieTransform : CookieTransform
System\IdentityModel\RsaEncryptionCookieTransform.cs (1)
28public class RsaEncryptionCookieTransform : CookieTransform
System\IdentityModel\RsaSignatureCookieTransform.cs (1)
27public class RsaSignatureCookieTransform : CookieTransform
12 references to CookieTransform
System.IdentityModel (11)
System\IdentityModel\CookieTransform.cs (1)
13/// Initializes a new instance of the <see cref="CookieTransform"/> class.
System\IdentityModel\Tokens\SessionSecurityTokenHandler.cs (10)
34public static readonly ReadOnlyCollection<CookieTransform> DefaultCookieTransforms = (new List<CookieTransform>(new CookieTransform[] { new DeflateCookieTransform(), new ProtectedDataCookieTransform() }).AsReadOnly()); 38ReadOnlyCollection<CookieTransform> _transforms; 61public SessionSecurityTokenHandler(ReadOnlyCollection<CookieTransform> transforms) 72public SessionSecurityTokenHandler(ReadOnlyCollection<CookieTransform> transforms, TimeSpan tokenLifetime) 554public ReadOnlyCollection<CookieTransform> Transforms 565/// <param name="transforms">The <see cref="CookieTransform"/> objects to use. </param> 566protected void SetTransforms(IEnumerable<CookieTransform> transforms) 568_transforms = new List<CookieTransform>(transforms).AsReadOnly();
System.ServiceModel (1)
System\ServiceModel\Security\FederatedSecurityTokenManager.cs (1)
40ReadOnlyCollection<CookieTransform> _cookieTransforms;