RuntimeBinderInternalCompilerException 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用系統提供的錯誤描述訊息,初始化 RuntimeBinderInternalCompilerException 類別的新執行個體。
多載
RuntimeBinderInternalCompilerException() |
使用系統提供的錯誤描述訊息,初始化 RuntimeBinderInternalCompilerException 類別的新執行個體。 |
RuntimeBinderInternalCompilerException(String) |
初始化具有指定的錯誤描述訊息之 RuntimeBinderInternalCompilerException 類別的新執行個體。 |
RuntimeBinderInternalCompilerException(SerializationInfo, StreamingContext) |
已淘汰.
使用序列化資料,初始化 RuntimeBinderInternalCompilerException 類別的新執行個體。 |
RuntimeBinderInternalCompilerException(String, Exception) |
初始化 RuntimeBinderInternalCompilerException 類別的新執行個體,這個執行個體有指定的錯誤訊息和造成這個例外狀況發生之內部例外狀況的參考。 |
RuntimeBinderInternalCompilerException()
使用系統提供的錯誤描述訊息,初始化 RuntimeBinderInternalCompilerException 類別的新執行個體。
public:
RuntimeBinderInternalCompilerException();
public RuntimeBinderInternalCompilerException ();
Public Sub New ()
備註
這個建構函式會將新實例的 屬性初始化 Message 為描述錯誤的系統提供訊息,例如“DefaultMessageDisplayedByParameterlessCtorWriterMustSupply” 此訊息會考慮目前的系統文化特性。
下表顯示 InsufficientMemoryException 執行個體的初始屬性值。
屬性 | 值 |
---|---|
InnerException |
null . |
Message | 當地語系化的錯誤訊息字串。 |
另請參閱
適用於
RuntimeBinderInternalCompilerException(String)
初始化具有指定的錯誤描述訊息之 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)
警告
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)
初始化 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 屬性傳回的值會與傳入建構函式的值相同,或傳回 null
(如果 InnerException 屬性未提供內部例外狀況值給建構函式)。
下表顯示 RuntimeBinderInternalCompilerException 執行個體的初始屬性值。
屬性 | 值 |
---|---|
InnerException |
null . |
Message | 在 message 中指定的錯誤訊息字串。 |