X509SecurityTokenProvider 생성자

정의

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

오버로드

Name Description
X509SecurityTokenProvider(X509Certificate2)

지정된 X.509 인증서를 X509SecurityTokenProvider 사용하여 클래스의 새 인스턴스를 초기화합니다.

X509SecurityTokenProvider(StoreLocation, StoreName, X509FindType, Object)

지정된 인증서 저장소 조건으로부터 X.509 인증서를 가져오면 클래스의 새 인스턴스 X509SecurityTokenProvider 를 초기화합니다.

X509SecurityTokenProvider(X509Certificate2)

Source:
X509SecurityTokenProvider.cs
Source:
X509SecurityTokenProvider.cs
Source:
X509SecurityTokenProvider.cs

지정된 X.509 인증서를 X509SecurityTokenProvider 사용하여 클래스의 새 인스턴스를 초기화합니다.

public:
 X509SecurityTokenProvider(System::Security::Cryptography::X509Certificates::X509Certificate2 ^ certificate);
public X509SecurityTokenProvider(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate);
new System.IdentityModel.Selectors.X509SecurityTokenProvider : System.Security.Cryptography.X509Certificates.X509Certificate2 -> System.IdentityModel.Selectors.X509SecurityTokenProvider
Public Sub New (certificate As X509Certificate2)

매개 변수

certificate
X509Certificate2

X509Certificate2 보안 토큰을 가져올 대상입니다.

예외

certificatenull입니다.

설명

이 메서드는 GetTokenCore 매개 변수에 지정된 인증서를 기반으로 보안 토큰을 certificate 가져옵니다.

적용 대상

X509SecurityTokenProvider(StoreLocation, StoreName, X509FindType, Object)

지정된 인증서 저장소 조건으로부터 X.509 인증서를 가져오면 클래스의 새 인스턴스 X509SecurityTokenProvider 를 초기화합니다.

public:
 X509SecurityTokenProvider(System::Security::Cryptography::X509Certificates::StoreLocation storeLocation, System::Security::Cryptography::X509Certificates::StoreName storeName, System::Security::Cryptography::X509Certificates::X509FindType findType, System::Object ^ findValue);
public X509SecurityTokenProvider(System.Security.Cryptography.X509Certificates.StoreLocation storeLocation, System.Security.Cryptography.X509Certificates.StoreName storeName, System.Security.Cryptography.X509Certificates.X509FindType findType, object findValue);
new System.IdentityModel.Selectors.X509SecurityTokenProvider : System.Security.Cryptography.X509Certificates.StoreLocation * System.Security.Cryptography.X509Certificates.StoreName * System.Security.Cryptography.X509Certificates.X509FindType * obj -> System.IdentityModel.Selectors.X509SecurityTokenProvider
Public Sub New (storeLocation As StoreLocation, storeName As StoreName, findType As X509FindType, findValue As Object)

매개 변수

storeLocation
StoreLocation

인증서 저장소 위치를 지정하는 값 중 StoreLocation 하나입니다.

storeName
StoreName

인증서 저장소 이름을 지정하는 값 중 StoreName 하나입니다.

findType
X509FindType

인증서 저장소를 X509FindType 검색하는 방법을 지정하는 값 중 하나입니다.

findValue
Object

인증서 저장소에서 X.509 인증서를 찾는 데 사용되는 값입니다.

예외

findValuenull입니다.

지정된 조건과 일치하는 인증서가 없습니다.

-또는-

둘 이상의 인증서가 지정된 조건과 일치합니다.

설명

이 메서드는 GetTokenCore 지정된 인증서 저장소 조건과 일치하는 인증서를 기반으로 보안 토큰을 가져옵니다.

적용 대상