WebSocketException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
WebSocketException 클래스의 인스턴스를 만듭니다.
오버로드
WebSocketException()
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException();
public WebSocketException ();
Public Sub New ()
적용 대상
WebSocketException(WebSocketError, Int32, String, Exception)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
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);
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)
매개 변수
- error
- WebSocketError
WebSocketError 열거형의 오류입니다.
- nativeError
- Int32
예외에 대한 네이티브 오류 코드입니다.
- message
- String
오류에 대한 설명입니다.
- innerException
- Exception
현재 예외를 발생시킨 이전 예외를 나타냅니다.
적용 대상
WebSocketException(WebSocketError, String, Exception)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, System::String ^ message, Exception ^ innerException);
public WebSocketException (System.Net.WebSockets.WebSocketError error, 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)
매개 변수
- error
- WebSocketError
WebSocketError 열거형의 오류입니다.
- message
- String
오류에 대한 설명입니다.
- innerException
- Exception
현재 예외를 발생시킨 이전 예외를 나타냅니다.
적용 대상
WebSocketException(WebSocketError, Int32, String)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, int nativeError, System::String ^ message);
public WebSocketException (System.Net.WebSockets.WebSocketError error, int nativeError, 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)
매개 변수
- error
- WebSocketError
WebSocketError 열거형의 오류입니다.
- nativeError
- Int32
예외에 대한 네이티브 오류 코드입니다.
- message
- String
오류에 대한 설명입니다.
적용 대상
WebSocketException(WebSocketError, Int32, Exception)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, int nativeError, Exception ^ innerException);
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)
매개 변수
- error
- WebSocketError
WebSocketError 열거형의 오류입니다.
- nativeError
- Int32
예외에 대한 네이티브 오류 코드입니다.
- innerException
- Exception
현재 예외를 발생시킨 이전 예외를 나타냅니다.
적용 대상
WebSocketException(String, Exception)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException(System::String ^ message, Exception ^ innerException);
public WebSocketException (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)
매개 변수
- message
- String
오류에 대한 설명입니다.
- innerException
- Exception
현재 예외를 발생시킨 이전 예외를 나타냅니다.
적용 대상
WebSocketException(WebSocketError, Int32)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
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)
매개 변수
- error
- WebSocketError
WebSocketError 열거형의 오류입니다.
- nativeError
- Int32
예외에 대한 네이티브 오류 코드입니다.
적용 대상
WebSocketException(WebSocketError, String)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, System::String ^ message);
public WebSocketException (System.Net.WebSockets.WebSocketError error, 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)
매개 변수
- error
- WebSocketError
WebSocketError 열거형의 오류입니다.
- message
- String
오류에 대한 설명입니다.
적용 대상
WebSocketException(Int32, String)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException(int nativeError, System::String ^ message);
public WebSocketException (int nativeError, 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)
매개 변수
- nativeError
- Int32
예외에 대한 네이티브 오류 코드입니다.
- message
- String
오류에 대한 설명입니다.
적용 대상
WebSocketException(Int32, Exception)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException(int nativeError, Exception ^ innerException);
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)
매개 변수
- nativeError
- Int32
예외에 대한 네이티브 오류 코드입니다.
- innerException
- Exception
현재 예외를 발생시킨 이전 예외를 나타냅니다.
적용 대상
WebSocketException(String)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException(System::String ^ message);
public WebSocketException (string? message);
public WebSocketException (string message);
new System.Net.WebSockets.WebSocketException : string -> System.Net.WebSockets.WebSocketException
Public Sub New (message As String)
매개 변수
- message
- String
오류에 대한 설명입니다.
적용 대상
WebSocketException(WebSocketError)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
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)
매개 변수
- error
- WebSocketError
WebSocketError 열거형의 오류입니다.
적용 대상
WebSocketException(Int32)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException(int nativeError);
public WebSocketException (int nativeError);
new System.Net.WebSockets.WebSocketException : int -> System.Net.WebSockets.WebSocketException
Public Sub New (nativeError As Integer)
매개 변수
- nativeError
- Int32
예외에 대한 네이티브 오류 코드입니다.
적용 대상
WebSocketException(WebSocketError, Exception)
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
- Source:
- WebSocketException.cs
WebSocketException 클래스의 인스턴스를 만듭니다.
public:
WebSocketException(System::Net::WebSockets::WebSocketError error, Exception ^ innerException);
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)
매개 변수
- error
- WebSocketError
WebSocketError 열거형의 오류입니다.
- innerException
- Exception
현재 예외를 발생시킨 이전 예외를 나타냅니다.
적용 대상
.NET