ConnectionAbortedException 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
ConnectionAbortedException() |
Initializes a new instance of ConnectionAbortedException. |
ConnectionAbortedException(String) |
Initializes a new instance of ConnectionAbortedException. |
ConnectionAbortedException(String, Exception) |
Initializes a new instance of ConnectionAbortedException. |
ConnectionAbortedException()
Initializes a new instance of ConnectionAbortedException.
public:
ConnectionAbortedException();
public ConnectionAbortedException ();
Public Sub New ()
Applies to
ConnectionAbortedException(String)
Initializes a new instance of ConnectionAbortedException.
public:
ConnectionAbortedException(System::String ^ message);
public ConnectionAbortedException (string message);
new Microsoft.AspNetCore.Connections.ConnectionAbortedException : string -> Microsoft.AspNetCore.Connections.ConnectionAbortedException
Public Sub New (message As String)
Parameters
- message
- String
The exception message.
Applies to
ConnectionAbortedException(String, Exception)
Initializes a new instance of ConnectionAbortedException.
public:
ConnectionAbortedException(System::String ^ message, Exception ^ inner);
public ConnectionAbortedException (string message, Exception inner);
new Microsoft.AspNetCore.Connections.ConnectionAbortedException : string * Exception -> Microsoft.AspNetCore.Connections.ConnectionAbortedException
Public Sub New (message As String, inner As Exception)
Parameters
- message
- String
The exception message.