RRException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
RRException() |
创建 RRException 类的新实例。 |
RRException(Result) |
创建 RRException 类的新实例。 |
RRException(Result, String) |
创建 RRException 类的新实例。 |
RRException(Result, String, String, String) |
创建 RRException 类的新实例。 |
RRException(Result, String, String, String, Exception) |
创建 RRException 类的新实例。 |
RRException()
RRException(Result)
创建 RRException 类的新实例。
public:
RRException(Microsoft::Azure::RemoteRendering::Result code);
public RRException (Microsoft.Azure.RemoteRendering.Result code);
new Microsoft.Azure.RemoteRendering.RRException : Microsoft.Azure.RemoteRendering.Result -> Microsoft.Azure.RemoteRendering.RRException
Public Sub New (code As Result)
参数
- code
- Result
此异常的错误代码。
适用于
RRException(Result, String)
创建 RRException 类的新实例。
public:
RRException(Microsoft::Azure::RemoteRendering::Result code, System::String ^ message);
public RRException (Microsoft.Azure.RemoteRendering.Result code, string message);
new Microsoft.Azure.RemoteRendering.RRException : Microsoft.Azure.RemoteRendering.Result * string -> Microsoft.Azure.RemoteRendering.RRException
Public Sub New (code As Result, message As String)
参数
- code
- Result
此异常的错误代码。
- message
- String
此异常的纯文本错误消息。
适用于
RRException(Result, String, String, String)
创建 RRException 类的新实例。
public:
RRException(Microsoft::Azure::RemoteRendering::Result code, System::String ^ message, System::String ^ requestCorrelationVector, System::String ^ responseCorrelationVector);
public RRException (Microsoft.Azure.RemoteRendering.Result code, string message, string requestCorrelationVector, string responseCorrelationVector);
new Microsoft.Azure.RemoteRendering.RRException : Microsoft.Azure.RemoteRendering.Result * string * string * string -> Microsoft.Azure.RemoteRendering.RRException
Public Sub New (code As Result, message As String, requestCorrelationVector As String, responseCorrelationVector As String)
参数
- code
- Result
此异常的错误代码。
- message
- String
此异常的纯文本错误消息。
- requestCorrelationVector
- String
请求此异常的相关向量。
- responseCorrelationVector
- String
此异常的响应相关向量。
适用于
RRException(Result, String, String, String, Exception)
创建 RRException 类的新实例。
public:
RRException(Microsoft::Azure::RemoteRendering::Result code, System::String ^ message, System::String ^ requestCorrelationVector, System::String ^ responseCorrelationVector, Exception ^ inner);
public RRException (Microsoft.Azure.RemoteRendering.Result code, string message, string requestCorrelationVector, string responseCorrelationVector, Exception inner);
new Microsoft.Azure.RemoteRendering.RRException : Microsoft.Azure.RemoteRendering.Result * string * string * string * Exception -> Microsoft.Azure.RemoteRendering.RRException
Public Sub New (code As Result, message As String, requestCorrelationVector As String, responseCorrelationVector As String, inner As Exception)
参数
- code
- Result
此异常的错误代码。
- message
- String
此异常的纯文本错误消息。
- requestCorrelationVector
- String
请求此异常的相关向量。
- responseCorrelationVector
- String
此异常的响应相关向量。
- inner
- Exception
导致引发此异常的异常。