WebSocketException Constructors
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Hiermee maakt u een exemplaar van de WebSocketException klasse.
Overloads
WebSocketException()
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException();
public WebSocketException();
Public Sub New ()
Van toepassing op
WebSocketException(WebSocketError, Int32, String, Exception)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, int nativeError, System::String ^ message, Exception ^ innerException);
public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message, Exception innerException);
new System.Net.WebSockets.WebSocketException : System.Net.WebSockets.WebSocketError * int * string * Exception -> System.Net.WebSockets.WebSocketException
Public Sub New (error As WebSocketError, nativeError As Integer, message As String, innerException As Exception)
Parameters
- error
- WebSocketError
De fout uit de opsomming WebSocketError.
- nativeError
- Int32
De systeemeigen foutcode voor de uitzondering.
- message
- String
De beschrijving van de fout.
- innerException
- Exception
Geeft de vorige uitzondering aan die heeft geleid tot de huidige uitzondering.
Van toepassing op
WebSocketException(WebSocketError, String, Exception)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, System::String ^ message, Exception ^ innerException);
public WebSocketException(System.Net.WebSockets.WebSocketError error, string message, Exception innerException);
new System.Net.WebSockets.WebSocketException : System.Net.WebSockets.WebSocketError * string * Exception -> System.Net.WebSockets.WebSocketException
Public Sub New (error As WebSocketError, message As String, innerException As Exception)
Parameters
- error
- WebSocketError
De fout uit de opsomming WebSocketError.
- message
- String
De beschrijving van de fout.
- innerException
- Exception
Geeft de vorige uitzondering aan die heeft geleid tot de huidige uitzondering.
Van toepassing op
WebSocketException(WebSocketError, Int32, String)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, int nativeError, System::String ^ message);
public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message);
new System.Net.WebSockets.WebSocketException : System.Net.WebSockets.WebSocketError * int * string -> System.Net.WebSockets.WebSocketException
Public Sub New (error As WebSocketError, nativeError As Integer, message As String)
Parameters
- error
- WebSocketError
De fout uit de opsomming WebSocketError.
- nativeError
- Int32
De systeemeigen foutcode voor de uitzondering.
- message
- String
De beschrijving van de fout.
Van toepassing op
WebSocketException(WebSocketError, Int32, Exception)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, int nativeError, Exception ^ innerException);
public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, Exception innerException);
new System.Net.WebSockets.WebSocketException : System.Net.WebSockets.WebSocketError * int * Exception -> System.Net.WebSockets.WebSocketException
Public Sub New (error As WebSocketError, nativeError As Integer, innerException As Exception)
Parameters
- error
- WebSocketError
De fout uit de opsomming WebSocketError.
- nativeError
- Int32
De systeemeigen foutcode voor de uitzondering.
- innerException
- Exception
Geeft de vorige uitzondering aan die heeft geleid tot de huidige uitzondering.
Van toepassing op
WebSocketException(String, Exception)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(System::String ^ message, Exception ^ innerException);
public WebSocketException(string message, Exception innerException);
new System.Net.WebSockets.WebSocketException : string * Exception -> System.Net.WebSockets.WebSocketException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
De beschrijving van de fout.
- innerException
- Exception
Geeft de vorige uitzondering aan die heeft geleid tot de huidige uitzondering.
Van toepassing op
WebSocketException(WebSocketError, Int32)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, int nativeError);
public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError);
new System.Net.WebSockets.WebSocketException : System.Net.WebSockets.WebSocketError * int -> System.Net.WebSockets.WebSocketException
Public Sub New (error As WebSocketError, nativeError As Integer)
Parameters
- error
- WebSocketError
De fout uit de opsomming WebSocketError.
- nativeError
- Int32
De systeemeigen foutcode voor de uitzondering.
Van toepassing op
WebSocketException(WebSocketError, String)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, System::String ^ message);
public WebSocketException(System.Net.WebSockets.WebSocketError error, string message);
new System.Net.WebSockets.WebSocketException : System.Net.WebSockets.WebSocketError * string -> System.Net.WebSockets.WebSocketException
Public Sub New (error As WebSocketError, message As String)
Parameters
- error
- WebSocketError
De fout uit de opsomming WebSocketError.
- message
- String
De beschrijving van de fout.
Van toepassing op
WebSocketException(Int32, String)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(int nativeError, System::String ^ message);
public WebSocketException(int nativeError, string message);
new System.Net.WebSockets.WebSocketException : int * string -> System.Net.WebSockets.WebSocketException
Public Sub New (nativeError As Integer, message As String)
Parameters
- nativeError
- Int32
De systeemeigen foutcode voor de uitzondering.
- message
- String
De beschrijving van de fout.
Van toepassing op
WebSocketException(Int32, Exception)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(int nativeError, Exception ^ innerException);
public WebSocketException(int nativeError, Exception innerException);
new System.Net.WebSockets.WebSocketException : int * Exception -> System.Net.WebSockets.WebSocketException
Public Sub New (nativeError As Integer, innerException As Exception)
Parameters
- nativeError
- Int32
De systeemeigen foutcode voor de uitzondering.
- innerException
- Exception
Geeft de vorige uitzondering aan die heeft geleid tot de huidige uitzondering.
Van toepassing op
WebSocketException(String)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(System::String ^ message);
public WebSocketException(string message);
new System.Net.WebSockets.WebSocketException : string -> System.Net.WebSockets.WebSocketException
Public Sub New (message As String)
Parameters
- message
- String
De beschrijving van de fout.
Van toepassing op
WebSocketException(WebSocketError)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error);
public WebSocketException(System.Net.WebSockets.WebSocketError error);
new System.Net.WebSockets.WebSocketException : System.Net.WebSockets.WebSocketError -> System.Net.WebSockets.WebSocketException
Public Sub New (error As WebSocketError)
Parameters
- error
- WebSocketError
De fout uit de opsomming WebSocketError.
Van toepassing op
WebSocketException(Int32)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(int nativeError);
public WebSocketException(int nativeError);
new System.Net.WebSockets.WebSocketException : int -> System.Net.WebSockets.WebSocketException
Public Sub New (nativeError As Integer)
Parameters
- nativeError
- Int32
De systeemeigen foutcode voor de uitzondering.
Van toepassing op
WebSocketException(WebSocketError, Exception)
Hiermee maakt u een exemplaar van de WebSocketException klasse.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, Exception ^ innerException);
public WebSocketException(System.Net.WebSockets.WebSocketError error, Exception innerException);
new System.Net.WebSockets.WebSocketException : System.Net.WebSockets.WebSocketError * Exception -> System.Net.WebSockets.WebSocketException
Public Sub New (error As WebSocketError, innerException As Exception)
Parameters
- error
- WebSocketError
De fout uit de opsomming WebSocketError.
- innerException
- Exception
Geeft de vorige uitzondering aan die heeft geleid tot de huidige uitzondering.