Freigeben über


IotHubCertificateVerificationContent Klasse

Definition

Das JSON-serialisierte Blattzertifikat.

public class IotHubCertificateVerificationContent
type IotHubCertificateVerificationContent = class
Public Class IotHubCertificateVerificationContent
Vererbung
IotHubCertificateVerificationContent

Konstruktoren

IotHubCertificateVerificationContent()

Initialisiert eine neue instance von IotHubCertificateVerificationContent.

Eigenschaften

Certificate

Base64-Darstellung des X509-Zertifikats cer-Datei oder nur des PEM-Dateiinhalts.

Um dieser Eigenschaft ein Objekt zuzuweisen, verwenden Sie FromObjectAsJson<T>(T, JsonSerializerOptions).

Verwenden Sie FromString(String), um dieser Eigenschaft eine bereits formatierte JSON-Zeichenfolge zuzuweisen.

Beispiele:

  • BinaryData.FromObjectAsJson("foo")Erstellt eine Nutzlast von "foo".
  • BinaryData.FromString("\"foo\"")Erstellt eine Nutzlast von "foo".
  • BinaryData.FromObjectAsJson(new { key = "value" })Erstellt eine Nutzlast von { "key": "value" }.
  • BinaryData.FromString("{\"key\": \"value\"}")Erstellt eine Nutzlast von { "key": "value" }.

Gilt für: