AsymmetricKeyExchangeDeformatter.Parameters Property

Definition

When overridden in a derived class, gets or sets the parameters for the asymmetric key exchange.

public:
 abstract property System::String ^ Parameters { System::String ^ get(); void set(System::String ^ value); };
public abstract string? Parameters { get; set; }
public abstract string Parameters { get; set; }
member this.Parameters : string with get, set
Public MustOverride Property Parameters As String

Property Value

A string in XML format containing the parameters of the asymmetric key exchange operation.

Examples

The following code example demonstrates how to override the Parameters property to disallow access to the parameters of the formatter. This code example is part of a larger example provided for the AsymmetricKeyExchangeDeformatter class.

public override string Parameters
{
    get { return null; }
    set {; }
}
Public Overrides ReadOnly Property Parameters() As String
    Get
        Return Nothing
    End Get
    Set(ByVal Value As String)

    End Set
End Property

Applies to

See also