RuntimeBinderInternalCompilerException 构造函数

定义

使用描述错误的系统提供的消息初始化 RuntimeBinderInternalCompilerException 类的新实例。

重载

RuntimeBinderInternalCompilerException()

使用描述错误的系统提供的消息初始化 RuntimeBinderInternalCompilerException 类的新实例。

RuntimeBinderInternalCompilerException(String)

使用描述错误的指定消息初始化 RuntimeBinderInternalCompilerException 类的新实例。

RuntimeBinderInternalCompilerException(SerializationInfo, StreamingContext)
已过时.

使用序列化的数据初始化 RuntimeBinderInternalCompilerException 类的新实例。

RuntimeBinderInternalCompilerException(String, Exception)

初始化 RuntimeBinderInternalCompilerException 类的新实例,该类具有指定的错误消息和对此异常原因的内部异常的引用。

RuntimeBinderInternalCompilerException()

Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs

使用描述错误的系统提供的消息初始化 RuntimeBinderInternalCompilerException 类的新实例。

public:
 RuntimeBinderInternalCompilerException();
public RuntimeBinderInternalCompilerException ();
Public Sub New ()

注解

此构造函数将新实例的 Message 属性初始化为描述错误的系统提供的消息,例如“DefaultMessageDisplayedByParameterlessCtorWriterMustSupply”此消息将考虑当前系统区域性。

下表显示了 InsufficientMemoryException实例的初始属性值。

财产 价值
InnerException null
Message 本地化的错误消息字符串。

另请参阅

适用于

RuntimeBinderInternalCompilerException(String)

Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs

使用描述错误的指定消息初始化 RuntimeBinderInternalCompilerException 类的新实例。

public:
 RuntimeBinderInternalCompilerException(System::String ^ message);
public RuntimeBinderInternalCompilerException (string message);
public RuntimeBinderInternalCompilerException (string? message);
new Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException : string -> Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException
Public Sub New (message As String)

参数

message
String

描述异常的消息。 此构造函数的调用方必须确保此字符串已本地化为当前系统区域性。

注解

下表显示了 RuntimeBinderInternalCompilerException实例的初始属性值。

财产 价值
InnerException null
Message message中指定的错误消息字符串。

另请参阅

适用于

RuntimeBinderInternalCompilerException(SerializationInfo, StreamingContext)

Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs

注意

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

使用序列化的数据初始化 RuntimeBinderInternalCompilerException 类的新实例。

protected:
 RuntimeBinderInternalCompilerException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected RuntimeBinderInternalCompilerException (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 RuntimeBinderInternalCompilerException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException
[<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 Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

保存所引发异常的序列化对象数据的 SerializationInfo

context
StreamingContext

包含有关源或目标的上下文信息的 StreamingContext

属性

注解

在反序列化期间调用此构造函数以重新构造通过流传输的异常对象。

适用于

RuntimeBinderInternalCompilerException(String, Exception)

Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs

初始化 RuntimeBinderInternalCompilerException 类的新实例,该类具有指定的错误消息和对此异常原因的内部异常的引用。

public:
 RuntimeBinderInternalCompilerException(System::String ^ message, Exception ^ innerException);
public RuntimeBinderInternalCompilerException (string message, Exception innerException);
public RuntimeBinderInternalCompilerException (string? message, Exception? innerException);
new Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException : string * Exception -> Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException
Public Sub New (message As String, innerException As Exception)

参数

message
String

说明异常原因的错误消息。

innerException
Exception

异常是当前异常的原因,如果未指定内部异常,则为 null 引用。

注解

作为上一个异常的直接结果引发的异常应包括对 InnerException 属性中上一个异常的引用。 InnerException 属性返回传入构造函数的相同值,或者如果 InnerException 属性未向构造函数提供内部异常值,则返回 null

下表显示了 RuntimeBinderInternalCompilerException实例的初始属性值。

财产 价值
InnerException null
Message message中指定的错误消息字符串。

适用于