StreamNotFoundException 构造函数

定义

重载

StreamNotFoundException(Object)

初始化 StreamNotFoundException 的新实例。

StreamNotFoundException(Object, String)

使用指定的键和消息初始化 StreamNotFoundException 的新实例。

StreamNotFoundException(Object, String, Exception)

使用指定的键、消息和内部异常初始化 StreamNotFoundException 的新实例。

StreamNotFoundException(Object)

初始化 StreamNotFoundException 的新实例。

public:
 StreamNotFoundException(System::Object ^ key);
public:
 StreamNotFoundException(Platform::Object ^ key);
 StreamNotFoundException(winrt::Windows::Foundation::IInspectable const & key);
public StreamNotFoundException (object key);
new Microsoft.VisualStudio.Utilities.StreamNotFoundException : obj -> Microsoft.VisualStudio.Utilities.StreamNotFoundException
Public Sub New (key As Object)

参数

key
Object

键。

适用于

StreamNotFoundException(Object, String)

使用指定的键和消息初始化 StreamNotFoundException 的新实例。

public:
 StreamNotFoundException(System::Object ^ key, System::String ^ message);
public:
 StreamNotFoundException(Platform::Object ^ key, Platform::String ^ message);
 StreamNotFoundException(winrt::Windows::Foundation::IInspectable const & key, std::wstring const & message);
public StreamNotFoundException (object key, string message);
new Microsoft.VisualStudio.Utilities.StreamNotFoundException : obj * string -> Microsoft.VisualStudio.Utilities.StreamNotFoundException
Public Sub New (key As Object, message As String)

参数

key
Object

键。

message
String

消息。

适用于

StreamNotFoundException(Object, String, Exception)

使用指定的键、消息和内部异常初始化 StreamNotFoundException 的新实例。

public:
 StreamNotFoundException(System::Object ^ key, System::String ^ message, Exception ^ internalEx);
public StreamNotFoundException (object key, string message, Exception internalEx);
new Microsoft.VisualStudio.Utilities.StreamNotFoundException : obj * string * Exception -> Microsoft.VisualStudio.Utilities.StreamNotFoundException
Public Sub New (key As Object, message As String, internalEx As Exception)

参数

key
Object

键。

message
String

消息。

internalEx
Exception

内部异常。

适用于