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

LeaseLostException 构造函数

定义

重载

LeaseLostException()

初始化 LeaseLostException 类的新实例。

LeaseLostException(ILease)

使用指定的租约初始化 类的新实例 LeaseLostException

LeaseLostException(String)

使用错误消息初始化 类的新实例 LeaseLostException

LeaseLostException(SerializationInfo, StreamingContext)

使用默认值初始化 LeaseLostException 类的新实例。

LeaseLostException(String, Exception)

使用错误消息和内部异常初始化 类的新实例 LeaseLostException

LeaseLostException(ILease, Exception, Boolean)

使用指定的租约、内部异常和指示租用是否消失的标志初始化 类的新实例 LeaseLostException

LeaseLostException()

初始化 LeaseLostException 类的新实例。

public LeaseLostException ();
Public Sub New ()

适用于

LeaseLostException(ILease)

使用指定的租约初始化 类的新实例 LeaseLostException

public LeaseLostException (Microsoft.Azure.Documents.ChangeFeedProcessor.PartitionManagement.ILease lease);
new Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.LeaseLostException : Microsoft.Azure.Documents.ChangeFeedProcessor.PartitionManagement.ILease -> Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.LeaseLostException
Public Sub New (lease As ILease)

参数

lease
ILease

丢失租约的实例。

适用于

LeaseLostException(String)

使用错误消息初始化 类的新实例 LeaseLostException

public LeaseLostException (string message);
new Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.LeaseLostException : string -> Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.LeaseLostException
Public Sub New (message As String)

参数

message
String

异常错误消息。

适用于

LeaseLostException(SerializationInfo, StreamingContext)

使用默认值初始化 LeaseLostException 类的新实例。

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

参数

info
SerializationInfo

SerializationInfo 对象,用于保存所引发异常的序列化对象数据。

context
StreamingContext

StreamingContext 包含有关源或目标的上下文信息。

适用于

LeaseLostException(String, Exception)

使用错误消息和内部异常初始化 类的新实例 LeaseLostException

public LeaseLostException (string message, Exception innerException);
new Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.LeaseLostException : string * Exception -> Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.LeaseLostException
Public Sub New (message As String, innerException As Exception)

参数

message
String

异常错误消息。

innerException
Exception

内部异常。

适用于

LeaseLostException(ILease, Exception, Boolean)

使用指定的租约、内部异常和指示租用是否消失的标志初始化 类的新实例 LeaseLostException

public LeaseLostException (Microsoft.Azure.Documents.ChangeFeedProcessor.PartitionManagement.ILease lease, Exception innerException, bool isGone);
new Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.LeaseLostException : Microsoft.Azure.Documents.ChangeFeedProcessor.PartitionManagement.ILease * Exception * bool -> Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.LeaseLostException
Public Sub New (lease As ILease, innerException As Exception, isGone As Boolean)

参数

lease
ILease

丢失租约的实例。

innerException
Exception

内部异常。

isGone
Boolean

租约是否存在。

适用于