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

FabricElementNotFoundException 构造函数

定义

重载

FabricElementNotFoundException()

使用错误代码 Unknown初始化 类的新实例FabricElementNotFoundException

FabricElementNotFoundException(FabricErrorCode)

使用指定的错误代码初始化 类的新实例 FabricElementNotFoundException

FabricElementNotFoundException(String)

使用错误代码Unknown和指定的错误消息初始化 类的新实例StreamingContext

FabricElementNotFoundException(SerializationInfo, StreamingContext)

使用指定的信息、上下文初始化 类的新实例 FabricElementNotFoundException

FabricElementNotFoundException(String, Exception)

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

FabricElementNotFoundException(String, FabricErrorCode)

使用指定的消息和错误代码初始化 类的新实例 FabricElementNotFoundException

FabricElementNotFoundException(SerializationInfo, StreamingContext, FabricErrorCode)

使用指定的信息、上下文和错误代码初始化 类的新实例 FabricElementNotFoundException

FabricElementNotFoundException(String, Exception, FabricErrorCode)

使用指定的消息、内部异常和错误代码初始化 类的新实例 FabricElementNotFoundException

FabricElementNotFoundException()

使用错误代码 Unknown初始化 类的新实例FabricElementNotFoundException

public FabricElementNotFoundException ();
Public Sub New ()

适用于

FabricElementNotFoundException(FabricErrorCode)

使用指定的错误代码初始化 类的新实例 FabricElementNotFoundException

public FabricElementNotFoundException (System.Fabric.FabricErrorCode errorCode);
new System.Fabric.FabricElementNotFoundException : System.Fabric.FabricErrorCode -> System.Fabric.FabricElementNotFoundException
Public Sub New (errorCode As FabricErrorCode)

参数

errorCode
FabricErrorCode

与异常关联的错误代码。

适用于

FabricElementNotFoundException(String)

使用错误代码Unknown和指定的错误消息初始化 类的新实例StreamingContext

public FabricElementNotFoundException (string message);
new System.Fabric.FabricElementNotFoundException : string -> System.Fabric.FabricElementNotFoundException
Public Sub New (message As String)

参数

message
String

解释异常原因的错误消息。

适用于

FabricElementNotFoundException(SerializationInfo, StreamingContext)

使用指定的信息、上下文初始化 类的新实例 FabricElementNotFoundException

protected FabricElementNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Fabric.FabricElementNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Fabric.FabricElementNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

包含 SerializationInfo 所引发异常的序列化对象数据的对象。

context
StreamingContext

StreamingContext 对象,该对象包含有关源或目标的上下文信息。 上下文参数保留供将来使用,可以为 null。

适用于

FabricElementNotFoundException(String, Exception)

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

public FabricElementNotFoundException (string message, Exception inner);
new System.Fabric.FabricElementNotFoundException : string * Exception -> System.Fabric.FabricElementNotFoundException
Public Sub New (message As String, inner As Exception)

参数

message
String

解释异常原因的错误消息。

inner
Exception

导致当前异常的异常;如果未指定内部异常,则为 null。 类 Exception 提供有关内部异常的更多详细信息。

适用于

FabricElementNotFoundException(String, FabricErrorCode)

使用指定的消息和错误代码初始化 类的新实例 FabricElementNotFoundException

public FabricElementNotFoundException (string message, System.Fabric.FabricErrorCode errorCode);
new System.Fabric.FabricElementNotFoundException : string * System.Fabric.FabricErrorCode -> System.Fabric.FabricElementNotFoundException
Public Sub New (message As String, errorCode As FabricErrorCode)

参数

message
String

解释异常原因的错误消息。

errorCode
FabricErrorCode

与异常关联的错误代码。

适用于

FabricElementNotFoundException(SerializationInfo, StreamingContext, FabricErrorCode)

使用指定的信息、上下文和错误代码初始化 类的新实例 FabricElementNotFoundException

protected FabricElementNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context, System.Fabric.FabricErrorCode errorCode);
new System.Fabric.FabricElementNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext * System.Fabric.FabricErrorCode -> System.Fabric.FabricElementNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext, errorCode As FabricErrorCode)

参数

info
SerializationInfo

包含 SerializationInfo 所引发异常的序列化对象数据的对象。

context
StreamingContext

StreamingContext 对象,该对象包含有关源或目标的上下文信息。 上下文参数保留供将来使用,可以为 null。

errorCode
FabricErrorCode

与异常关联的错误代码。

适用于

FabricElementNotFoundException(String, Exception, FabricErrorCode)

使用指定的消息、内部异常和错误代码初始化 类的新实例 FabricElementNotFoundException

public FabricElementNotFoundException (string message, Exception inner, System.Fabric.FabricErrorCode errorCode);
new System.Fabric.FabricElementNotFoundException : string * Exception * System.Fabric.FabricErrorCode -> System.Fabric.FabricElementNotFoundException
Public Sub New (message As String, inner As Exception, errorCode As FabricErrorCode)

参数

message
String

解释异常原因的错误消息。

inner
Exception

导致当前异常的异常;如果未指定内部异常,则为 null。 类 Exception 提供有关内部异常的更多详细信息。

errorCode
FabricErrorCode

与异常关联的错误代码。

适用于