Class ServiceResult<TResult>
Результат обработки запроса.
Inheritance
System.Object
ServiceResult<TResult>
Namespace:InfinniPlatform.Http
Assembly:InfinniPlatform.Core.Abstractions.dll
Syntax
public class ServiceResult<TResult> : object
Type Parameters
Name | Description |
---|---|
TResult | Тип результата. |
Properties
| Improve this Doc View SourceError
Сообщение об ошибке выполнения запроса.
Declaration
public string Error { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Result
Результат выполнения запроса.
Declaration
public TResult Result { get; set; }
Property Value
Type | Description |
---|---|
TResult |
Success
Успешность выполнения запроса.
Declaration
public bool Success { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |