次の方法で共有


IotHubCertificateVerificationContent クラス

定義

JSON でシリアル化されたリーフ証明書。

public class IotHubCertificateVerificationContent
type IotHubCertificateVerificationContent = class
Public Class IotHubCertificateVerificationContent
継承
IotHubCertificateVerificationContent

コンストラクター

IotHubCertificateVerificationContent()

IotHubCertificateVerificationContent の新しいインスタンスを初期化します。

プロパティ

Certificate

x509 証明書の .cer ファイルまたは .pem ファイルの内容の base-64 表現。

このプロパティにオブジェクトを割り当てるには、 を使用します FromObjectAsJson<T>(T, JsonSerializerOptions)

このプロパティに既に書式設定された json 文字列を割り当てるには、 を使用 FromString(String)します。

例 :

  • BinaryData.FromObjectAsJson("foo")ペイロード "foo" を作成します。
  • BinaryData.FromString("\"foo\"")ペイロード "foo" を作成します。
  • BinaryData.FromObjectAsJson(new { key = "value" }){ "key": "value" }のペイロードを作成します。
  • BinaryData.FromString("{\"key\": \"value\"}"){ "key": "value" }のペイロードを作成します。

適用対象