RSAOAEPKeyExchangeFormatter.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.
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