EndOfStreamException コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
EndOfStreamException クラスの新しいインスタンスを初期化します。
オーバーロード
EndOfStreamException() |
メッセージ文字列がシステムによって提供されたメッセージに設定され、HRESULT が COR_E_ENDOFSTREAM に設定された EndOfStreamException クラスの新しいインスタンスを初期化します。 |
EndOfStreamException(String) |
メッセージ文字列を |
EndOfStreamException(SerializationInfo, StreamingContext) |
古い.
指定したシリアル化とコンテキスト情報を使用して、EndOfStreamException クラスの新しいインスタンスを初期化します。 |
EndOfStreamException(String, Exception) |
指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、EndOfStreamException クラスの新しいインスタンスを初期化します。 |
EndOfStreamException()
メッセージ文字列がシステムによって提供されたメッセージに設定され、HRESULT が COR_E_ENDOFSTREAM に設定された EndOfStreamException クラスの新しいインスタンスを初期化します。
public:
EndOfStreamException();
public EndOfStreamException ();
Public Sub New ()
こちらもご覧ください
適用対象
EndOfStreamException(String)
メッセージ文字列を message
に設定し、HRESULT を COR_E_ENDOFSTREAM に設定して、EndOfStreamException クラスの新しいインスタンスを初期化します。
public:
EndOfStreamException(System::String ^ message);
public EndOfStreamException (string message);
public EndOfStreamException (string? message);
new System.IO.EndOfStreamException : string -> System.IO.EndOfStreamException
Public Sub New (message As String)
パラメーター
- message
- String
エラーを説明する文字列。 message
の内容は、ユーザーが理解できる内容にします。 このコンストラクターの呼び出し元は、この文字列が現在のシステム環境向けにローカライズされていることを確認する必要があります。
こちらもご覧ください
適用対象
EndOfStreamException(SerializationInfo, StreamingContext)
注意事項
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
指定したシリアル化とコンテキスト情報を使用して、EndOfStreamException クラスの新しいインスタンスを初期化します。
protected:
EndOfStreamException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected EndOfStreamException (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 EndOfStreamException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IO.EndOfStreamException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.EndOfStreamException
[<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.IO.EndOfStreamException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.EndOfStreamException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
パラメーター
- info
- SerializationInfo
スローされている例外に関するシリアル化済みオブジェクト データを保持している SerializationInfo。
- context
- StreamingContext
転送元または転送先についてのコンテキスト情報を含む StreamingContext です。
- 属性
こちらもご覧ください
適用対象
EndOfStreamException(String, Exception)
指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、EndOfStreamException クラスの新しいインスタンスを初期化します。
public:
EndOfStreamException(System::String ^ message, Exception ^ innerException);
public EndOfStreamException (string message, Exception innerException);
public EndOfStreamException (string? message, Exception? innerException);
new System.IO.EndOfStreamException : string * Exception -> System.IO.EndOfStreamException
Public Sub New (message As String, innerException As Exception)
パラメーター
- message
- String
エラーを説明する文字列。 message
の内容は、ユーザーが理解できる内容にします。 このコンストラクターの呼び出し元は、この文字列が現在のシステム環境向けにローカライズされていることを確認する必要があります。
- innerException
- Exception
現在の例外の原因となった例外。 innerException
パラメーターが null
でない場合は、内部例外を処理する catch
ブロックで現在の例外が発生します。
注釈
前の例外の直接の結果としてスローされる例外については、InnerException プロパティに、前の例外への参照を含める必要があります。 InnerException プロパティは、コンストラクターに渡されるのと同じ値を返します。または、InnerException プロパティがコンストラクターに内部例外値を提供しない場合には null
を返します。
次の表に、EndOfStreamException のインスタンスに対するプロパティの初期値を示します。
プロパティ | [値] |
---|---|
InnerException | 内部例外の参照。 |
Message | エラー メッセージ文字列。 |
こちらもご覧ください
適用対象
.NET