RSAOAEPKeyExchangeFormatter.Parameters Property

Definition

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

public:
 virtual property System::String ^ Parameters { System::String ^ get(); };
public override string? Parameters { get; }
public override string Parameters { get; }
member this.Parameters : string
Public Overrides ReadOnly 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 RSAOAEPKeyExchangeFormatter class.

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

Applies to

See also