SessionSecurityTokenHandler 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다.
오버로드
SessionSecurityTokenHandler() |
기본 쿠키 변환 및 토큰 수명을 사용하는 SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다. |
SessionSecurityTokenHandler(ReadOnlyCollection<CookieTransform>) |
지정된 쿠키 변환을 사용하는 SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다. |
SessionSecurityTokenHandler(ReadOnlyCollection<CookieTransform>, TimeSpan) |
지정된 쿠키 변환 및 토큰 수명을 사용하는 SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다. |
SessionSecurityTokenHandler()
기본 쿠키 변환 및 토큰 수명을 사용하는 SessionSecurityTokenHandler 클래스의 새 인스턴스를 초기화합니다.
public:
SessionSecurityTokenHandler();
public SessionSecurityTokenHandler ();
Public Sub New ()
설명
TokenLifetime 하 고 Transforms 속성으로 초기화 됩니다 DefaultLifetime 고 DefaultCookieTransforms입니다.
적용 대상
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
인 경우
tokenLifetime
이 Zero보다 작거나 같은 경우
적용 대상
.NET