RsaEndpointIdentity Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy RsaEndpointIdentity.

Przeciążenia

RsaEndpointIdentity(Claim)

Inicjuje RsaEndpointIdentity nowe wystąpienie klasy z oświadczenia.

RsaEndpointIdentity(X509Certificate2)

Inicjuje nowe wystąpienie klasy RsaEndpointIdentity.

RsaEndpointIdentity(String)

Inicjuje RsaEndpointIdentity nowe wystąpienie klasy z klucza publicznego.

RsaEndpointIdentity(Claim)

Źródło:
RsaEndpointIdentity.cs
Źródło:
RsaEndpointIdentity.cs
Źródło:
RsaEndpointIdentity.cs

Inicjuje RsaEndpointIdentity nowe wystąpienie klasy z oświadczenia.

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)

Parametry

identity
Claim

Element Claim.

Wyjątki

identity to null.

Typ identity oświadczenia to nie Rsa.

Dotyczy

RsaEndpointIdentity(X509Certificate2)

Źródło:
RsaEndpointIdentity.cs
Źródło:
RsaEndpointIdentity.cs
Źródło:
RsaEndpointIdentity.cs

Inicjuje nowe wystąpienie klasy 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)

Parametry

certificate
X509Certificate2

Element X509Certificate2.

Wyjątki

certificate to null.

Klucz certificate publiczny to null.

Nie można uzyskać dostępu do klucza publicznego certyfikatu.

Uwagi

Element certificate jest konwertowany na oświadczenie RSA, a tożsamość punktu końcowego jest tworzona przez metodę Initialize.

Dotyczy

RsaEndpointIdentity(String)

Źródło:
RsaEndpointIdentity.cs
Źródło:
RsaEndpointIdentity.cs
Źródło:
RsaEndpointIdentity.cs

Inicjuje RsaEndpointIdentity nowe wystąpienie klasy z klucza publicznego.

public:
 RsaEndpointIdentity(System::String ^ publicKey);
public RsaEndpointIdentity (string publicKey);
new System.ServiceModel.RsaEndpointIdentity : string -> System.ServiceModel.RsaEndpointIdentity
Public Sub New (publicKey As String)

Parametry

publicKey
String

Klucz publiczny.

Wyjątki

publicKey to null.

Uwagi

Klucz publiczny jest konwertowany na oświadczenie RSA, a tożsamość punktu końcowego jest tworzona przez metodę Initialize.

Dotyczy