RSAOAEPKeyExchangeDeformatter.Parameters Property

Definition

Gets the parameters for the Optimal Asymmetric Encryption Padding (OAEP) key exchange.

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

Property Value

An XML string containing the parameters of the OAEP key exchange operation.

Examples

The following code example demonstrates how to call the Parameters property to retrieve an XML representation of the parameters. This code example is part of a larger example provided for the RSAOAEPKeyExchangeDeformatter class.

String^ xmlParameters = rsaDeformatter->Parameters;
string xmlParameters = rsaDeformatter.Parameters;
Dim xmlParameters as string = rsaDeformatter.Parameters

Applies to

See also