次の方法で共有


CertificateRequestProperties.Exportable プロパティ

定義

要求用に作成された秘密キーをエクスポートできるかどうかを指定する値を取得または設定します。

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;
}

注釈

既定では、秘密キーはエクスポートできません。

適用対象