EndpointNotFoundException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 EndpointNotFoundException 类的新实例。
重载
EndpointNotFoundException() |
初始化 EndpointNotFoundException 类的新实例。 |
EndpointNotFoundException(String) |
用指定的错误消息初始化 EndpointNotFoundException 类的新实例。 |
EndpointNotFoundException(SerializationInfo, StreamingContext) |
使用指定流的源和目标的数据以及序列化异常所需的信息来初始化 EndpointNotFoundException 类的新实例。 |
EndpointNotFoundException(String, Exception) |
利用指定错误消息以及导致当前异常的内部异常来初始化 EndpointNotFoundException 类的新实例。 |
注解
如果要将错误消息传递给用户,请使用 EndpointNotFoundException(String) 构造函数。
如果要将错误消息和内部异常(导致此异常的原因)的引用传递给用户,请使用 EndpointNotFoundException(String, Exception) 构造函数。
如果要传递序列化信息和流上下文,请使用 EndpointNotFoundException(SerializationInfo, StreamingContext) 构造函数。
EndpointNotFoundException()
初始化 EndpointNotFoundException 类的新实例。
public:
EndpointNotFoundException();
public EndpointNotFoundException ();
Public Sub New ()
适用于
EndpointNotFoundException(String)
用指定的错误消息初始化 EndpointNotFoundException 类的新实例。
public:
EndpointNotFoundException(System::String ^ message);
public EndpointNotFoundException (string message);
new System.ServiceModel.EndpointNotFoundException : string -> System.ServiceModel.EndpointNotFoundException
Public Sub New (message As String)
参数
- message
- String
解释异常原因的错误消息。
注解
当您要将错误消息传递给用户时,请使用此构造函数。 消息参数的内容应该是预期用户可以理解的。
适用于
EndpointNotFoundException(SerializationInfo, StreamingContext)
使用指定流的源和目标的数据以及序列化异常所需的信息来初始化 EndpointNotFoundException 类的新实例。
protected:
EndpointNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected EndpointNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.ServiceModel.EndpointNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ServiceModel.EndpointNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
参数
- info
- SerializationInfo
包含序列化异常所需的所有数据的 SerializationInfo。
- context
- StreamingContext
指定流的源和目标的 StreamingContext。
注解
在反序列化过程中调用此构造函数以重新构造通过流传输的异常对象。
适用于
EndpointNotFoundException(String, Exception)
利用指定错误消息以及导致当前异常的内部异常来初始化 EndpointNotFoundException 类的新实例。
public:
EndpointNotFoundException(System::String ^ message, Exception ^ innerException);
public EndpointNotFoundException (string message, Exception innerException);
new System.ServiceModel.EndpointNotFoundException : string * Exception -> System.ServiceModel.EndpointNotFoundException
Public Sub New (message As String, innerException As Exception)
参数
- message
- String
解释异常原因的错误消息。
注解
当您要将错误消息和有关内部异常的信息传递给用户时,请使用此构造函数。 消息参数的内容应该是预期用户可以理解的。
因前一个异常而直接引发的异常可以在 InnerException 属性中包含对前一个异常的引用。 InnerException 属性返回传递到构造函数中的相同值,或者如果 null
属性没有向构造函数提供内部异常值,则返回 Nothing
引用(在 Visual Basic 中为 InnerException)。