Udostępnij za pośrednictwem


AsymmetricAlgorithm.KeyExchangeAlgorithm Właściwość

Definicja

Po zastąpieniu w klasie pochodnej pobiera nazwę algorytmu wymiany kluczy. W przeciwnym razie zgłasza wartość 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

Wartość właściwości

Nazwa algorytmu wymiany kluczy.

Przykłady

Poniższy przykład kodu pokazuje, jak zastąpić KeyExchangeAlgorithm właściwość, aby zwrócić nazwę algorytmu wymiany kluczy. Ten przykład kodu jest częścią większego przykładu podanego AsymmetricAlgorithm dla klasy.

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

Dotyczy

Zobacz też