DirectoryNotFoundException コンストラクター

定義

メッセージ文字列を設定して、DirectoryNotFoundException クラスのインスタンスを初期化します。

オーバーロード

DirectoryNotFoundException()

メッセージ文字列がシステムによって提供されたメッセージに設定され、HRESULT が COR_E_DIRECTORYNOTFOUND に設定された DirectoryNotFoundException クラスの新しいインスタンスを初期化します。

DirectoryNotFoundException(String)

メッセージ文字列を message に設定し、HRESULT を COR_E_DIRECTORYNOTFOUND に設定して、DirectoryNotFoundException クラスの新しいインスタンスを初期化します。

DirectoryNotFoundException(SerializationInfo, StreamingContext)
古い.

指定したシリアル化とコンテキスト情報を使用して、DirectoryNotFoundException クラスの新しいインスタンスを初期化します。

DirectoryNotFoundException(String, Exception)

指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、DirectoryNotFoundException クラスの新しいインスタンスを初期化します。

DirectoryNotFoundException()

ソース:
DirectoryNotFoundException.cs
ソース:
DirectoryNotFoundException.cs
ソース:
DirectoryNotFoundException.cs

メッセージ文字列がシステムによって提供されたメッセージに設定され、HRESULT が COR_E_DIRECTORYNOTFOUND に設定された DirectoryNotFoundException クラスの新しいインスタンスを初期化します。

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

次のコード例は、コンストラクターを呼び出す方法を DirectoryNotFoundException 示しています。

using System;
using System.IO;

class Program
{

    static void Main(string[] args)
    {
        try
        {

            //  Specify a directory name that does not exist for this demo.
            string dir = @"c:\78fe9lk";

            // If this directory does not exist, a DirectoryNotFoundException is thrown
            // when attempting to set the current directory.
            Directory.SetCurrentDirectory(dir);
        }
        catch (DirectoryNotFoundException dirEx)
        {
            // Let the user know that the directory did not exist.
            Console.WriteLine("Directory not found: " + dirEx.Message);
        }
    }
}
Imports System.IO

Module Module1
    Sub Main()
        Try

            ' Specify a directory name that does not exist for this demo.
            Dim dir As String = "c:\78fe9lk"

            ' If this directory does not exist, a DirectoryNotFoundException is thrown
            ' when attempting to set the current directory.
            Directory.SetCurrentDirectory(dir)

        Catch ex As System.IO.DirectoryNotFoundException

            ' Let the user know that the directory did not exist.
            Console.WriteLine("Directory not found: " + ex.Message)
        End Try
    End Sub
End Module

注釈

このコンストラクターは、新しいインスタンスの プロパティを、"指定されたディレクトリが見つかりませんでした" などのエラーを説明するシステム指定のメッセージに初期化 Exception.Message します。このメッセージでは、現在のシステム カルチャが考慮されます。

Exception.InnerException新しいインスタンスの プロパティは にnull初期化されます。

こちらもご覧ください

適用対象

DirectoryNotFoundException(String)

ソース:
DirectoryNotFoundException.cs
ソース:
DirectoryNotFoundException.cs
ソース:
DirectoryNotFoundException.cs

メッセージ文字列を message に設定し、HRESULT を COR_E_DIRECTORYNOTFOUND に設定して、DirectoryNotFoundException クラスの新しいインスタンスを初期化します。

public:
 DirectoryNotFoundException(System::String ^ message);
public DirectoryNotFoundException (string message);
public DirectoryNotFoundException (string? message);
new System.IO.DirectoryNotFoundException : string -> System.IO.DirectoryNotFoundException
Public Sub New (message As String)

パラメーター

message
String

エラーを説明する Stringmessage の内容は、ユーザーが理解できる内容にします。 このコンストラクターの呼び出し元は、この文字列が現在のシステム環境向けにローカライズされていることを確認する必要があります。

注釈

このコンストラクターは、 を使用して Exception.Message 新しいインスタンスの プロパティを message初期化します。

Exception.InnerException新しいインスタンスの プロパティは にnull初期化されます。

こちらもご覧ください

適用対象

DirectoryNotFoundException(SerializationInfo, StreamingContext)

ソース:
DirectoryNotFoundException.cs
ソース:
DirectoryNotFoundException.cs
ソース:
DirectoryNotFoundException.cs

注意事項

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

指定したシリアル化とコンテキスト情報を使用して、DirectoryNotFoundException クラスの新しいインスタンスを初期化します。

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

パラメーター

info
SerializationInfo

スローされている例外に関するシリアル化済みオブジェクト データを保持している SerializationInfo

context
StreamingContext

転送元または転送先についてのコンテキスト情報を含む StreamingContext です。

属性

こちらもご覧ください

適用対象

DirectoryNotFoundException(String, Exception)

ソース:
DirectoryNotFoundException.cs
ソース:
DirectoryNotFoundException.cs
ソース:
DirectoryNotFoundException.cs

指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、DirectoryNotFoundException クラスの新しいインスタンスを初期化します。

public:
 DirectoryNotFoundException(System::String ^ message, Exception ^ innerException);
public DirectoryNotFoundException (string message, Exception innerException);
public DirectoryNotFoundException (string? message, Exception? innerException);
new System.IO.DirectoryNotFoundException : string * Exception -> System.IO.DirectoryNotFoundException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

例外の原因を説明するエラー メッセージ。

innerException
Exception

現在の例外の原因となった例外。 innerException パラメーターが null でない場合は、内部例外を処理する catch ブロックで現在の例外が発生します。

注釈

前の例外の直接の結果としてスローされる例外については、InnerException プロパティに、前の例外への参照を含める必要があります。 InnerException プロパティは、コンストラクターに渡されるのと同じ値を返します。または、InnerException プロパティがコンストラクターに内部例外値を提供しない場合には null を返します。

次の表に、DirectoryNotFoundException のインスタンスに対するプロパティの初期値を示します。

プロパティ [値]
InnerException 内部例外の参照。
Message エラー メッセージ文字列。

こちらもご覧ください

適用対象