WebView2RuntimeNotFoundException Constructors

Definition

Overloads

WebView2RuntimeNotFoundException()

Initializes a new instance of the WebView2RuntimeNotFoundException class.

WebView2RuntimeNotFoundException(Exception)

Initializes a new instance of the WebView2RuntimeNotFoundException class with a reference to the inner exception that is the cause of this exception.

WebView2RuntimeNotFoundException(String)

Initializes a new instance of the WebView2RuntimeNotFoundException class with a specified error message.

WebView2RuntimeNotFoundException(String, Exception)

Initializes a new instance of the WebView2RuntimeNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

WebView2RuntimeNotFoundException()

Initializes a new instance of the WebView2RuntimeNotFoundException class.

public WebView2RuntimeNotFoundException ();
Public Sub New ()

Applies to

WebView2RuntimeNotFoundException(Exception)

Initializes a new instance of the WebView2RuntimeNotFoundException class with a reference to the inner exception that is the cause of this exception.

public WebView2RuntimeNotFoundException (Exception inner);
new Microsoft.Web.WebView2.Core.WebView2RuntimeNotFoundException : Exception -> Microsoft.Web.WebView2.Core.WebView2RuntimeNotFoundException
Public Sub New (inner As Exception)

Parameters

inner
Exception

The exception that is the cause of the current exception.

Applies to

WebView2RuntimeNotFoundException(String)

Initializes a new instance of the WebView2RuntimeNotFoundException class with a specified error message.

public WebView2RuntimeNotFoundException (string message);
new Microsoft.Web.WebView2.Core.WebView2RuntimeNotFoundException : string -> Microsoft.Web.WebView2.Core.WebView2RuntimeNotFoundException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

WebView2RuntimeNotFoundException(String, Exception)

Initializes a new instance of the WebView2RuntimeNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public WebView2RuntimeNotFoundException (string message, Exception inner);
new Microsoft.Web.WebView2.Core.WebView2RuntimeNotFoundException : string * Exception -> Microsoft.Web.WebView2.Core.WebView2RuntimeNotFoundException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

inner
Exception

The exception that is the cause of the current exception.

Applies to