Поделиться через


RRException Конструкторы

Определение

Перегрузки

RRException()

Создает новый экземпляр класса RRException.

RRException(Result)

Создает новый экземпляр класса RRException.

RRException(Result, String)

Создает новый экземпляр класса RRException.

RRException(Result, String, String, String)

Создает новый экземпляр класса RRException.

RRException(Result, String, String, String, Exception)

Создает новый экземпляр класса RRException.

RRException()

Создает новый экземпляр класса RRException.

public:
 RRException();
public RRException ();
Public Sub New ()

Применяется к

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

Исключение, вызвавшее это исключение.

Применяется к