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