Table of Contents

Class EndpointCredentials

Namespace
Azure.Iot.Operations.Connector.Files
Assembly
Azure.Iot.Operations.Connector.dll
public class EndpointCredentials
Inheritance
EndpointCredentials
Inherited Members

Properties

AuthenticationMethod

public Method AuthenticationMethod { get; set; }

Property Value

Method

CaCertificate

The device's CA certificate to use when connecting to this device with TLS authentication.

public string? CaCertificate { get; set; }

Property Value

string

ClientCertificate

The client certificate to use when connecting to this device with x509 authorization. May be null if no x509 authorization should be used.

public string? ClientCertificate { get; set; }

Property Value

string

Password

The password to use when connecting to this device with username/password authorization. May be null if no username/password authorization should be used.

public string? Password { get; set; }

Property Value

string

Username

The username to use when connecting to this device with username/password authorization. May be null if no username/password authorization should be used.

public string? Username { get; set; }

Property Value

string