NoStartupFormException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 NoStartupFormException 类的新实例。
重载
NoStartupFormException() |
初始化 NoStartupFormException 类的新实例。 |
NoStartupFormException(String) |
用指定的错误消息初始化 NoStartupFormException 类的新实例。 |
NoStartupFormException(SerializationInfo, StreamingContext) |
已过时.
用序列化数据初始化 NoStartupFormException 类的新实例。 |
NoStartupFormException(String, Exception) |
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 NoStartupFormException 类的新实例。 |
NoStartupFormException()
初始化 NoStartupFormException 类的新实例。
public:
NoStartupFormException();
public NoStartupFormException ();
Public Sub New ()
注解
Visual Basic 应用程序模型要求应用程序在运行 OnRun 方法之前设置 MainForm 属性。 如果未设置 属性,Visual Basic 应用程序模型将引发此异常。 有关详细信息,请参阅 扩展 Visual Basic 应用程序模型。
下表显示了 NoStartupFormException 实例的初始属性值。
properties | 值 |
---|---|
InnerException | 空引用(在 Visual Basic 中为 Nothing )。 |
Message | 本地化的错误消息字符串。 |
另请参阅
适用于
NoStartupFormException(String)
用指定的错误消息初始化 NoStartupFormException 类的新实例。
public:
NoStartupFormException(System::String ^ message);
public NoStartupFormException (string message);
new Microsoft.VisualBasic.ApplicationServices.NoStartupFormException : string -> Microsoft.VisualBasic.ApplicationServices.NoStartupFormException
Public Sub New (message As String)
参数
- message
- String
描述错误的消息。
注解
message
参数的内容应为人所理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。
NoStartupFormException 从 Exception 继承。 此构造函数设置 对象的属性, Exception 如下表所示。
properties | 值 |
---|---|
InnerException | 空引用(在 Visual Basic 中为 Nothing ) |
Message | 字符串 message 。 |
另请参阅
适用于
NoStartupFormException(SerializationInfo, StreamingContext)
注意
Type or member obsolete.
用序列化数据初始化 NoStartupFormException 类的新实例。
protected:
NoStartupFormException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected NoStartupFormException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("Type or member obsolete.", DiagnosticId="SYSLIB0051")]
protected NoStartupFormException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.VisualBasic.ApplicationServices.NoStartupFormException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.VisualBasic.ApplicationServices.NoStartupFormException
[<System.Obsolete("Type or member obsolete.", DiagnosticId="SYSLIB0051")>]
new Microsoft.VisualBasic.ApplicationServices.NoStartupFormException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.VisualBasic.ApplicationServices.NoStartupFormException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
参数
- info
- SerializationInfo
存放有关所引发异常的序列化对象数据的 SerializationInfo 对象。
- context
- StreamingContext
StreamingContext 对象,该对象包含有关源或目标的上下文信息。
- 属性
注解
在反序列化期间调用此构造函数以重新构造在流上传输的异常对象。
另请参阅
适用于
NoStartupFormException(String, Exception)
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 NoStartupFormException 类的新实例。
public:
NoStartupFormException(System::String ^ message, Exception ^ inner);
public NoStartupFormException (string message, Exception inner);
new Microsoft.VisualBasic.ApplicationServices.NoStartupFormException : string * Exception -> Microsoft.VisualBasic.ApplicationServices.NoStartupFormException
Public Sub New (message As String, inner As Exception)
参数
- inner
- Exception
表示当前异常的产生原因的 Exception 对象。 如果 InnerException 参数不是空引用(在 Visual Basic 中为 Nothing
),则在处理内部异常的 catch 块中引发当前异常。
注解
message
参数的内容应为人所理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。
因前一个异常而直接引发的异常应在 InnerException 属性中包含对前一个异常的引用。 InnerException属性将返回相同的值,如果传递到构造函数中,则为 null 引用InnerException属性不会提供给构造函数的内部异常值。
下表显示了 ApplicationException 实例的初始属性值。
properties | 值 |
---|---|
InnerException | 引用 inner 。 |
Message | 字符串 message 。 |