AsymmetricAlgorithm.KeyExchangeAlgorithm Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
En cas de substitution dans une classe dérivée, obtient le nom de l'algorithme d'échange de clés. Sinon, lève un NotImplementedException.
public:
virtual property System::String ^ KeyExchangeAlgorithm { System::String ^ get(); };
public:
abstract property System::String ^ KeyExchangeAlgorithm { System::String ^ get(); };
public virtual string? KeyExchangeAlgorithm { get; }
public virtual string KeyExchangeAlgorithm { get; }
public abstract string KeyExchangeAlgorithm { get; }
member this.KeyExchangeAlgorithm : string
Public Overridable ReadOnly Property KeyExchangeAlgorithm As String
Public MustOverride ReadOnly Property KeyExchangeAlgorithm As String
Valeur de propriété
Nom de l'algorithme d'échange de clés.
Exemples
L’exemple de code suivant montre comment remplacer la KeyExchangeAlgorithm propriété pour retourner le nom de l’algorithme d’échange de clés. Cet exemple de code fait partie d’un exemple plus grand fourni pour la AsymmetricAlgorithm classe .
public:
property String^ KeyExchangeAlgorithm
{
virtual String^ get() override
{
return "RSA-PKCS1-KeyEx";
}
}
public override string KeyExchangeAlgorithm
{
get {return "RSA-PKCS1-KeyEx";}
}
Public Overrides ReadOnly Property KeyExchangeAlgorithm() As String
Get
Return "RSA-PKCS1-KeyEx"
End Get
End Property