共用方式為


CertificateEnrollmentManager.CreateRequestAsync 方法

定義

根據 CertificateRequestProperties 物件中指定的屬性,以非同步方式建立 PKCS #10 憑證要求。

public:
 static IAsyncOperation<Platform::String ^> ^ CreateRequestAsync(CertificateRequestProperties ^ request);
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<winrt::hstring> CreateRequestAsync(CertificateRequestProperties const& request);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<string> CreateRequestAsync(CertificateRequestProperties request);
function createRequestAsync(request)
Public Shared Function CreateRequestAsync (request As CertificateRequestProperties) As IAsyncOperation(Of String)

參數

request
CertificateRequestProperties

CertificateRequestProperties物件,其中包含用來建立憑證要求的屬性值。

傳回

IAsyncOperation<String>

IAsyncOperation<Platform::String>

IAsyncOperation<winrt::hstring>

這個方法會傳回包含 base64 編碼 PKCS #10 憑證要求的字串。

屬性

備註

憑證註冊可以在應用程式容器中執行。 建議您使用下列要求物件來提交要求:

CertificateRequestProperties物件包含下列預設值。

屬性 預設值
主旨 空字串
KeyAlgorithmName RSA
KeySize 2048 位元
FriendlyName 空字串
HashAlgorithmName SHA256
Exportable 不可匯出
KeyUsages 簽署
KeyProtectionLevel NoConsent
KeyStorageProviderName Microsoft 軟體金鑰儲存提供者

雖然 CreateRequestAsync 方法會建立憑證要求,但您必須將要求提交至 HTTP 註冊端點。 然後,您可以從 HTTP 註冊端點取得回應,然後呼叫 InstallCertificateAsync 方法來安裝回應。

注意

您必須在KeyUsages屬性中包含您在CreateRequestAsync呼叫中使用的CertificateRequestProperties物件中的簽署值。 如果您想要將 KeyUsages 設定為 DecryptionKeyAgreement,您也必須在 [簽署] 中設定 OR。 否則, 呼叫 CreateRequestAsync 將會失敗。

適用於