다음을 통해 공유


SessionSecurityTokenHandler 생성자

정의

SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다.

오버로드

SessionSecurityTokenHandler()

기본 쿠키 변환 및 토큰 수명을 사용하는 SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다.

SessionSecurityTokenHandler(ReadOnlyCollection<CookieTransform>)

지정된 쿠키 변환을 사용하는 SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다.

SessionSecurityTokenHandler(ReadOnlyCollection<CookieTransform>, TimeSpan)

지정된 쿠키 변환 및 토큰 수명을 사용하는 SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다.

SessionSecurityTokenHandler()

기본 쿠키 변환 및 토큰 수명을 사용하는 SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다.

public:
 SessionSecurityTokenHandler();
public SessionSecurityTokenHandler ();
Public Sub New ()

설명

TokenLifetime 하 고 Transforms 속성으로 초기화 됩니다 DefaultLifetimeDefaultCookieTransforms입니다.

적용 대상

SessionSecurityTokenHandler(ReadOnlyCollection<CookieTransform>)

지정된 쿠키 변환을 사용하는 SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다.

public:
 SessionSecurityTokenHandler(System::Collections::ObjectModel::ReadOnlyCollection<System::IdentityModel::CookieTransform ^> ^ transforms);
public SessionSecurityTokenHandler (System.Collections.ObjectModel.ReadOnlyCollection<System.IdentityModel.CookieTransform> transforms);
new System.IdentityModel.Tokens.SessionSecurityTokenHandler : System.Collections.ObjectModel.ReadOnlyCollection<System.IdentityModel.CookieTransform> -> System.IdentityModel.Tokens.SessionSecurityTokenHandler
Public Sub New (transforms As ReadOnlyCollection(Of CookieTransform))

매개 변수

transforms
ReadOnlyCollection<CookieTransform>

쿠키를 인코딩하거나 디코딩할 때 적용할 변환입니다. Transforms 속성을 설정합니다.

예외

transforms이(가) null인 경우

설명

TokenLifetime 속성이 DefaultLifetime으로 초기화됩니다.

적용 대상

SessionSecurityTokenHandler(ReadOnlyCollection<CookieTransform>, TimeSpan)

지정된 쿠키 변환 및 토큰 수명을 사용하는 SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다.

public:
 SessionSecurityTokenHandler(System::Collections::ObjectModel::ReadOnlyCollection<System::IdentityModel::CookieTransform ^> ^ transforms, TimeSpan tokenLifetime);
public SessionSecurityTokenHandler (System.Collections.ObjectModel.ReadOnlyCollection<System.IdentityModel.CookieTransform> transforms, TimeSpan tokenLifetime);
new System.IdentityModel.Tokens.SessionSecurityTokenHandler : System.Collections.ObjectModel.ReadOnlyCollection<System.IdentityModel.CookieTransform> * TimeSpan -> System.IdentityModel.Tokens.SessionSecurityTokenHandler
Public Sub New (transforms As ReadOnlyCollection(Of CookieTransform), tokenLifetime As TimeSpan)

매개 변수

transforms
ReadOnlyCollection<CookieTransform>

쿠키를 인코딩하거나 디코딩할 때 적용할 변환입니다. Transforms 속성을 설정합니다.

tokenLifetime
TimeSpan

토큰에 대한 기본 수명입니다. TokenLifetime 속성을 설정합니다.

예외

transforms이(가) null인 경우

tokenLifetimeZero보다 작거나 같은 경우

적용 대상