StreamNotFoundException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
StreamNotFoundException(Object) |
Initializes a new instance of StreamNotFoundException. |
StreamNotFoundException(Object, String) |
Initializes a new instance of StreamNotFoundException with the specified key and message. |
StreamNotFoundException(Object, String, Exception) |
Initializes a new instance of StreamNotFoundException with the specified key, message, and internal exception. |
StreamNotFoundException(Object)
Initializes a new instance of 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)
Parameters
- key
- Object
The key.
Applies to
StreamNotFoundException(Object, String)
Initializes a new instance of StreamNotFoundException with the specified key and message.
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)
Parameters
- key
- Object
The key.
- message
- String
The message.
Applies to
StreamNotFoundException(Object, String, Exception)
Initializes a new instance of StreamNotFoundException with the specified key, message, and internal exception.
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)
Parameters
- key
- Object
The key.
- message
- String
The message.
- internalEx
- Exception
The internal exception.