DllNotFoundException 构造函数   
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 DllNotFoundException 类的新实例。
重载
| DllNotFoundException() | 使用默认属性初始化 DllNotFoundException 类的新实例。 | 
| DllNotFoundException(String) | 用指定的错误消息初始化 DllNotFoundException 类的新实例。 | 
| DllNotFoundException(SerializationInfo, StreamingContext) | 
		已过时.
	 用序列化数据初始化 DllNotFoundException 类的新实例。 | 
| DllNotFoundException(String, Exception) | 使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 DllNotFoundException 类的新实例。 | 
DllNotFoundException()
- Source:
- DllNotFoundException.cs
- Source:
- DllNotFoundException.cs
- Source:
- DllNotFoundException.cs
使用默认属性初始化 DllNotFoundException 类的新实例。
public:
 DllNotFoundException();public DllNotFoundException ();Public Sub New ()注解
下表显示了 DllNotFoundException 实例的初始属性值。
| properties | 值 | 
|---|---|
| InnerException | 空引用(在 Visual Basic 中为 Nothing)。 | 
| Message | 本地化的错误消息字符串。 | 
适用于
DllNotFoundException(String)
- Source:
- DllNotFoundException.cs
- Source:
- DllNotFoundException.cs
- Source:
- DllNotFoundException.cs
用指定的错误消息初始化 DllNotFoundException 类的新实例。
public:
 DllNotFoundException(System::String ^ message);public DllNotFoundException (string message);public DllNotFoundException (string? message);new DllNotFoundException : string -> DllNotFoundExceptionPublic Sub New (message As String)参数
- message
- String
解释异常原因的错误消息。
注解
下表显示了 DllNotFoundException 实例的初始属性值。
| properties | 值 | 
|---|---|
| InnerException | 空引用(在 Visual Basic 中为 Nothing)。 | 
| Message | 错误消息字符串。 | 
适用于
DllNotFoundException(SerializationInfo, StreamingContext)
- Source:
- DllNotFoundException.cs
- Source:
- DllNotFoundException.cs
- Source:
- DllNotFoundException.cs
注意
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
用序列化数据初始化 DllNotFoundException 类的新实例。
protected:
 DllNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);protected DllNotFoundException (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 DllNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);new DllNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> DllNotFoundException[<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 DllNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> DllNotFoundExceptionProtected Sub New (info As SerializationInfo, context As StreamingContext)参数
- info
- SerializationInfo
包含有关所引发异常的序列化对象数据的 SerializationInfo。
- context
- StreamingContext
StreamingContext,它包含关于源或目标的上下文信息。
- 属性
适用于
DllNotFoundException(String, Exception)
- Source:
- DllNotFoundException.cs
- Source:
- DllNotFoundException.cs
- Source:
- DllNotFoundException.cs
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 DllNotFoundException 类的新实例。
public:
 DllNotFoundException(System::String ^ message, Exception ^ inner);public DllNotFoundException (string message, Exception inner);public DllNotFoundException (string? message, Exception? inner);new DllNotFoundException : string * Exception -> DllNotFoundExceptionPublic Sub New (message As String, inner As Exception)参数
- message
- String
解释异常原因的错误消息。
- inner
- Exception
导致当前异常的异常。 如果 inner 参数不为 null,则当前异常将在处理内部异常的 catch 块中引发。
注解
因前一个异常而直接引发的异常应在 InnerException 属性中包含对前一个异常的引用。 
              InnerException 属性将返回传递给构造函数的同一值;如果 InnerException 属性不向构造函数提供内部异常值,则返回 null。
下表显示了 DllNotFoundException 实例的初始属性值。
| properties | “值” | 
|---|---|
| InnerException | 内部异常引用。 | 
| Message | 错误消息字符串。 |