ThrottleException 构造函数

定义

重载

ThrottleException()

初始化 ThrottleException 类的新实例。

ThrottleException(String)

使用异常消息初始化 类的新实例 ThrottleException

ThrottleException(String, Exception)

使用异常消息和内部异常初始化 类的新实例 ThrottleException

ThrottleException()

初始化 ThrottleException 类的新实例。

public ThrottleException ();
Public Sub New ()

适用于

ThrottleException(String)

使用异常消息初始化 类的新实例 ThrottleException

public ThrottleException (string message);
new Microsoft.Bot.Connector.Authentication.ThrottleException : string -> Microsoft.Bot.Connector.Authentication.ThrottleException
Public Sub New (message As String)

参数

message
String

异常消息。

适用于

ThrottleException(String, Exception)

使用异常消息和内部异常初始化 类的新实例 ThrottleException

public ThrottleException (string message, Exception innerException);
new Microsoft.Bot.Connector.Authentication.ThrottleException : string * Exception -> Microsoft.Bot.Connector.Authentication.ThrottleException
Public Sub New (message As String, innerException As Exception)

参数

message
String

异常消息。

innerException
Exception

内部异常。

适用于