RSAOAEPKeyExchangeFormatter.Parameters プロパティ

定義

OAEP (最適非対称暗号化パディング) キー交換のパラメーターを取得します。

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

プロパティ値

OAEP キーの交換操作のパラメーターを含む XML 文字列。

次のコード例では、 プロパティを呼び出 Parameters してパラメーターの XML 表現を取得する方法を示します。 このコード例は、RSAOAEPKeyExchangeFormatter クラスのために提供されている大規模な例の一部です。

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

適用対象

こちらもご覧ください