RsaEndpointIdentity 생성자

정의

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
Claim

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이(가) 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에 의해 만들어집니다.

적용 대상