次の方法で共有


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 インスタンスを取得します。

適用対象