ActivityHandler.InvokeResponseException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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 인스턴스를 가져옵니다.