AsymmetricKeyExchangeDeformatter.Parameters Property    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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, setPublic MustOverride Property Parameters As StringProperty 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