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
CaCertificate
The device's CA certificate to use when connecting to this device with TLS authentication.
public string? CaCertificate { get; set; }
Property Value
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
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
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; }