ActivityHandler.InvokeResponseException コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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 インスタンスを取得します。