JSException 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
JSException(String) |
Constructs an instance of JSException. |
JSException(String, Exception) |
Constructs an instance of JSException. |
JSException(String)
- Source:
- JSException.cs
- Source:
- JSException.cs
- Source:
- JSException.cs
- Source:
- JSException.cs
- Source:
- JSException.cs
- Source:
- JSException.cs
- Source:
- JSException.cs
Constructs an instance of JSException.
public:
JSException(System::String ^ message);
public JSException (string message);
new Microsoft.JSInterop.JSException : string -> Microsoft.JSInterop.JSException
Public Sub New (message As String)
Parameters
- message
- String
The exception message.
Applies to
JSException(String, Exception)
- Source:
- JSException.cs
- Source:
- JSException.cs
- Source:
- JSException.cs
- Source:
- JSException.cs
- Source:
- JSException.cs
- Source:
- JSException.cs
- Source:
- JSException.cs
Constructs an instance of JSException.
public:
JSException(System::String ^ message, Exception ^ innerException);
public JSException (string message, Exception innerException);
new Microsoft.JSInterop.JSException : string * Exception -> Microsoft.JSInterop.JSException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The exception message.
- innerException
- Exception
The inner exception.