你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DeviceMessageLockLostException 构造函数

定义

重载

DeviceMessageLockLostException()

初始化此类的新实例。

DeviceMessageLockLostException(String)

使用包含找不到的设备标识符的消息字符串初始化 类的新实例。

DeviceMessageLockLostException(SerializationInfo, StreamingContext)

使用指定的序列化和上下文信息初始化 类的新实例。

DeviceMessageLockLostException(String, Exception)

使用包含找不到的设备标识符的消息字符串初始化 类的新实例。

DeviceMessageLockLostException(String, Guid)

使用包含找不到的设备标识符的消息字符串初始化 类的新实例。

DeviceMessageLockLostException()

初始化此类的新实例。

public DeviceMessageLockLostException ();
Public Sub New ()

适用于

DeviceMessageLockLostException(String)

使用包含找不到的设备标识符的消息字符串初始化 类的新实例。

public DeviceMessageLockLostException (string message);
new Microsoft.Azure.Devices.Client.Exceptions.DeviceMessageLockLostException : string -> Microsoft.Azure.Devices.Client.Exceptions.DeviceMessageLockLostException
Public Sub New (message As String)

参数

message
String

对错误的说明。 消息的内容被设计为人可理解的形式。

适用于

DeviceMessageLockLostException(SerializationInfo, StreamingContext)

使用指定的序列化和上下文信息初始化 类的新实例。

protected DeviceMessageLockLostException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.Azure.Devices.Client.Exceptions.DeviceMessageLockLostException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.Azure.Devices.Client.Exceptions.DeviceMessageLockLostException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

保存有关所引发异常的序列化对象数据的对象。

context
StreamingContext

一个包含有关源或目标的上下文信息的对象。

适用于

DeviceMessageLockLostException(String, Exception)

使用包含找不到的设备标识符的消息字符串初始化 类的新实例。

public DeviceMessageLockLostException (string message, Exception innerException);
new Microsoft.Azure.Devices.Client.Exceptions.DeviceMessageLockLostException : string * Exception -> Microsoft.Azure.Devices.Client.Exceptions.DeviceMessageLockLostException
Public Sub New (message As String, innerException As Exception)

参数

message
String

对错误的说明。 消息的内容被设计为人可理解的形式。

innerException
Exception

导致当前异常的异常

适用于

DeviceMessageLockLostException(String, Guid)

使用包含找不到的设备标识符的消息字符串初始化 类的新实例。

public DeviceMessageLockLostException (string deviceId, Guid messageId);
new Microsoft.Azure.Devices.Client.Exceptions.DeviceMessageLockLostException : string * Guid -> Microsoft.Azure.Devices.Client.Exceptions.DeviceMessageLockLostException
Public Sub New (deviceId As String, messageId As Guid)

参数

deviceId
String

设备标识符。

messageId
Guid

消息标识符。

适用于