StrongTypingException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 StrongTypingException 类的新实例。
重载
StrongTypingException() |
初始化 StrongTypingException 类的新实例。 |
StrongTypingException(String) |
使用指定的字符串初始化 StrongTypingException 类的新实例。 |
StrongTypingException(SerializationInfo, StreamingContext) |
已过时.
使用指定的序列化信息和流上下文初始化 StrongTypingException 类的新实例。 |
StrongTypingException(String, Exception) |
使用指定的字符串和内部异常初始化 StrongTypingException 类的新实例。 |
StrongTypingException()
- Source:
- StrongTypingException.cs
- Source:
- StrongTypingException.cs
- Source:
- StrongTypingException.cs
初始化 StrongTypingException 类的新实例。
public:
StrongTypingException();
public StrongTypingException ();
Public Sub New ()
注解
StrongTypingException 类不用作独立组件,而是用作其他类从中派生标准功能的类。
适用于
StrongTypingException(String)
- Source:
- StrongTypingException.cs
- Source:
- StrongTypingException.cs
- Source:
- StrongTypingException.cs
使用指定的字符串初始化 StrongTypingException 类的新实例。
public:
StrongTypingException(System::String ^ message);
public StrongTypingException (string? message);
public StrongTypingException (string message);
new System.Data.StrongTypingException : string -> System.Data.StrongTypingException
Public Sub New (message As String)
参数
- message
- String
引发异常时显示的字符串。
注解
StrongTypingException 类不用作独立组件,而是用作其他类从中派生标准功能的类。
适用于
StrongTypingException(SerializationInfo, StreamingContext)
- Source:
- StrongTypingException.cs
- Source:
- StrongTypingException.cs
- Source:
- StrongTypingException.cs
注意
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
使用指定的序列化信息和流上下文初始化 StrongTypingException 类的新实例。
protected:
StrongTypingException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected StrongTypingException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected StrongTypingException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.StrongTypingException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.StrongTypingException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Data.StrongTypingException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.StrongTypingException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
参数
- info
- SerializationInfo
- context
- StreamingContext
StreamingContext 结构。
- 属性
注解
StrongTypingException 类不用作独立组件,而是用作其他类从中派生标准功能的类。
适用于
StrongTypingException(String, Exception)
- Source:
- StrongTypingException.cs
- Source:
- StrongTypingException.cs
- Source:
- StrongTypingException.cs
使用指定的字符串和内部异常初始化 StrongTypingException 类的新实例。
public:
StrongTypingException(System::String ^ s, Exception ^ innerException);
public StrongTypingException (string? s, Exception? innerException);
public StrongTypingException (string s, Exception innerException);
new System.Data.StrongTypingException : string * Exception -> System.Data.StrongTypingException
Public Sub New (s As String, innerException As Exception)
参数
- s
- String
引发异常时显示的字符串。
- innerException
- Exception
对内部异常的引用。
注解
StrongTypingException 类不用作独立组件,而是用作其他类从中派生标准功能的类。