RsaEndpointIdentity 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
RsaEndpointIdentity 클래스의 새 인스턴스를 초기화합니다.
오버로드
RsaEndpointIdentity(Claim) |
클레임에서 RsaEndpointIdentity 클래스의 새 인스턴스를 초기화합니다. |
RsaEndpointIdentity(X509Certificate2) |
RsaEndpointIdentity 클래스의 새 인스턴스를 초기화합니다. |
RsaEndpointIdentity(String) |
공개 키에서 RsaEndpointIdentity 클래스의 새 인스턴스를 초기화합니다. |
RsaEndpointIdentity(Claim)
- Source:
- RsaEndpointIdentity.cs
- Source:
- RsaEndpointIdentity.cs
- Source:
- RsaEndpointIdentity.cs
클레임에서 RsaEndpointIdentity 클래스의 새 인스턴스를 초기화합니다.
public:
RsaEndpointIdentity(System::IdentityModel::Claims::Claim ^ identity);
public RsaEndpointIdentity (System.IdentityModel.Claims.Claim identity);
new System.ServiceModel.RsaEndpointIdentity : System.IdentityModel.Claims.Claim -> System.ServiceModel.RsaEndpointIdentity
Public Sub New (identity As Claim)
매개 변수
예외
identity
이(가) null
인 경우
identity
의 클레임 형식이 Rsa가 아닌 경우
적용 대상
RsaEndpointIdentity(X509Certificate2)
- Source:
- RsaEndpointIdentity.cs
- Source:
- RsaEndpointIdentity.cs
- Source:
- RsaEndpointIdentity.cs
RsaEndpointIdentity 클래스의 새 인스턴스를 초기화합니다.
public:
RsaEndpointIdentity(System::Security::Cryptography::X509Certificates::X509Certificate2 ^ certificate);
public RsaEndpointIdentity (System.Security.Cryptography.X509Certificates.X509Certificate2 certificate);
new System.ServiceModel.RsaEndpointIdentity : System.Security.Cryptography.X509Certificates.X509Certificate2 -> System.ServiceModel.RsaEndpointIdentity
Public Sub New (certificate As X509Certificate2)
매개 변수
- certificate
- X509Certificate2
예외
certificate
이(가) null
인 경우
certificate
공개 키가 null
인 경우
인증서의 공개 키에 액세스할 수 없는 경우
설명
는 certificate
RSA 클레임으로 변환되고 엔드포인트 ID는 메서드 Initialize에 의해 만들어집니다.
적용 대상
RsaEndpointIdentity(String)
- Source:
- RsaEndpointIdentity.cs
- Source:
- RsaEndpointIdentity.cs
- Source:
- RsaEndpointIdentity.cs
공개 키에서 RsaEndpointIdentity 클래스의 새 인스턴스를 초기화합니다.
public:
RsaEndpointIdentity(System::String ^ publicKey);
public RsaEndpointIdentity (string publicKey);
new System.ServiceModel.RsaEndpointIdentity : string -> System.ServiceModel.RsaEndpointIdentity
Public Sub New (publicKey As String)
매개 변수
- publicKey
- String
공개 키입니다.
예외
publicKey
이(가) null
인 경우
설명
공개 키는 RSA 클레임으로 변환되고 엔드포인트 ID는 메서드 Initialize에 의해 만들어집니다.
적용 대상
.NET