CertificateRequestProperties.Exportable プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
要求用に作成された秘密キーをエクスポートできるかどうかを指定する値を取得または設定します。
public:
property ExportOption Exportable { ExportOption get(); void set(ExportOption value); };
ExportOption Exportable();
void Exportable(ExportOption value);
public ExportOption Exportable { get; set; }
var exportOption = certificateRequestProperties.exportable;
certificateRequestProperties.exportable = exportOption;
Public Property Exportable As ExportOption
プロパティ値
キーをエクスポートできるかどうかを指定します。
例
public ExportOption GetSetExportable(ExportOption inputOption)
{
// Create a new CertificateRequestProperties object.
CertificateRequestProperties reqProperties = new CertificateRequestProperties();
// The default value is ExportOption.NotExportable
ExportOption defaultOption = reqProperties.Exportable;
// If the input option does not equal the default option, reset the property value.
if (inputOption != defaultOption)
{
reqProperties.Exportable = inputOption;
}
// Return the option value.
return reqProperties.Exportable;
}
注釈
既定では、秘密キーはエクスポートできません。