AuthenticationMethodFactory.CreateAuthenticationWithRegistrySymmetricKey Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Azure SDK for .NET