C# Класс RiakClient.RiakResult

Represents the collection of result information for a Riak operation that has no specific return value.
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
FromError RiakResult
FromException RiakResult
Success RiakResult

Открытые методы

Метод Описание
RiakResult ( ResultCode resultCode, Exception exception ) : System

Initializes a new instance of the RiakResult class.

RiakResult ( bool isSuccess = true, string errorMessage = null, ResultCode resultCode = ResultCode.Success ) : System

Initializes a new instance of the RiakResult class.

Защищенные методы

Метод Описание
RiakResult ( bool isSuccess, ResultCode resultCode, Exception exception, string errorMessage, bool nodeOffline ) : System

Приватные методы

Метод Описание
FromError ( ResultCode code, string message, bool nodeOffline ) : RiakResult
FromException ( ResultCode code, Exception ex, bool nodeOffline ) : RiakResult
Success ( ) : RiakResult

Описание методов

RiakResult() публичный Метод

Initializes a new instance of the RiakResult class.
public RiakResult ( ResultCode resultCode, Exception exception ) : System
resultCode ResultCode The .
exception System.Exception The . Required.
Результат System

RiakResult() защищенный Метод

protected RiakResult ( bool isSuccess, ResultCode resultCode, Exception exception, string errorMessage, bool nodeOffline ) : System
isSuccess bool
resultCode ResultCode
exception System.Exception
errorMessage string
nodeOffline bool
Результат System

RiakResult() публичный Метод

Initializes a new instance of the RiakResult class.
public RiakResult ( bool isSuccess = true, string errorMessage = null, ResultCode resultCode = ResultCode.Success ) : System
isSuccess bool true if the result represents Success, false otherwise. Defaults to true.
errorMessage string The error message, if any. Defaults to null.
resultCode ResultCode The . Defaults to ResultCode.Success.
Результат System