X509SecurityTokenProvider 생성자

정의

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

오버로드

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입니다.

예외

certificate이(가) null인 경우

설명

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 인증서를 찾는 데 사용되는 값입니다.

예외

findValue이(가) null인 경우

지정된 기준과 일치하는 인증서가 없는 경우

또는

둘 이상의 인증서가 지정된 기준과 일치하는 경우

설명

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

적용 대상