AuthenticationMethodFactory.CreateAuthenticationWithRegistrySymmetricKey Method

Definition

Overloads

CreateAuthenticationWithRegistrySymmetricKey(String, String)

Creates a DeviceAuthenticationWithRegistrySymmetricKey instance based on the parameters.

CreateAuthenticationWithRegistrySymmetricKey(String, String, String)

Creates a ModuleAuthenticationWithRegistrySymmetricKey instance based on the parameters.

CreateAuthenticationWithRegistrySymmetricKey(String, String)

Creates a DeviceAuthenticationWithRegistrySymmetricKey instance based on the parameters.

public static Microsoft.Azure.Devices.Client.IAuthenticationMethod CreateAuthenticationWithRegistrySymmetricKey (string deviceId, string key);
static member CreateAuthenticationWithRegistrySymmetricKey : string * string -> Microsoft.Azure.Devices.Client.IAuthenticationMethod
Public Shared Function CreateAuthenticationWithRegistrySymmetricKey (deviceId As String, key As String) As IAuthenticationMethod

Parameters

deviceId
String

Device Identifier.

key
String

Key associated with the device in the device registry.

Returns

A new instance of the DeviceAuthenticationWithRegistrySymmetricKey class.

Applies to

CreateAuthenticationWithRegistrySymmetricKey(String, String, String)

Creates a ModuleAuthenticationWithRegistrySymmetricKey instance based on the parameters.

public static Microsoft.Azure.Devices.Client.IAuthenticationMethod CreateAuthenticationWithRegistrySymmetricKey (string deviceId, string moduleId, string key);
static member CreateAuthenticationWithRegistrySymmetricKey : string * string * string -> Microsoft.Azure.Devices.Client.IAuthenticationMethod
Public Shared Function CreateAuthenticationWithRegistrySymmetricKey (deviceId As String, moduleId As String, key As String) As IAuthenticationMethod

Parameters

deviceId
String

Device Identifier.

moduleId
String

Module Identifier.

key
String

Key associated with the module in the device registry.

Returns

A new instance of the ModuleAuthenticationWithRegistrySymmetricKey class.

Applies to