다음을 통해 공유


ActivityHandler.InvokeResponseException 생성자

정의

오버로드

ActivityHandler.InvokeResponseException()

ActivityHandler.InvokeResponseException 클래스의 새 인스턴스를 초기화합니다.

ActivityHandler.InvokeResponseException(String)

ActivityHandler.InvokeResponseException 클래스의 새 인스턴스를 초기화합니다.

ActivityHandler.InvokeResponseException(HttpStatusCode, Object)

ActivityHandler.InvokeResponseException 클래스의 새 인스턴스를 초기화합니다.

ActivityHandler.InvokeResponseException(String, Exception)

ActivityHandler.InvokeResponseException 클래스의 새 인스턴스를 초기화합니다.

ActivityHandler.InvokeResponseException()

ActivityHandler.InvokeResponseException 클래스의 새 인스턴스를 초기화합니다.

public InvokeResponseException();
Public Sub New ()

적용 대상

ActivityHandler.InvokeResponseException(String)

ActivityHandler.InvokeResponseException 클래스의 새 인스턴스를 초기화합니다.

public InvokeResponseException(string message);
new Microsoft.Bot.Builder.ActivityHandler.InvokeResponseException : string -> Microsoft.Bot.Builder.ActivityHandler.InvokeResponseException
Public Sub New (message As String)

매개 변수

message
String

예외의 이유 또는 빈 문자열을 설명하는 메시지입니다.

적용 대상

ActivityHandler.InvokeResponseException(HttpStatusCode, Object)

ActivityHandler.InvokeResponseException 클래스의 새 인스턴스를 초기화합니다.

public InvokeResponseException(System.Net.HttpStatusCode statusCode, object body = default);
new Microsoft.Bot.Builder.ActivityHandler.InvokeResponseException : System.Net.HttpStatusCode * obj -> Microsoft.Bot.Builder.ActivityHandler.InvokeResponseException
Public Sub New (statusCode As HttpStatusCode, Optional body As Object = Nothing)

매개 변수

statusCode
HttpStatusCode

오류의 Http 상태 코드입니다.

body
Object

예외의 본문입니다. 기본값은 null입니다.

적용 대상

ActivityHandler.InvokeResponseException(String, Exception)

ActivityHandler.InvokeResponseException 클래스의 새 인스턴스를 초기화합니다.

public InvokeResponseException(string message, Exception innerException);
new Microsoft.Bot.Builder.ActivityHandler.InvokeResponseException : string * Exception -> Microsoft.Bot.Builder.ActivityHandler.InvokeResponseException
Public Sub New (message As String, innerException As Exception)

매개 변수

message
String

예외의 이유 또는 빈 문자열을 설명하는 메시지입니다.

innerException
Exception

현재 예외를 발생시킨 System.Exception 인스턴스를 가져옵니다.

적용 대상