Class TResult
This class has information related to operation results
Inheritance
System.Object
TResult
Namespace: EDIPlatformFinance.BusinessLayer.Operational
Assembly: EDIPlatformFinance.BusinessLayer.Core.dll
Syntax
[Serializable]
[DataContract]
public class TResult
Properties
ErrorCode
Declaration
[DataMember(EmitDefaultValue = false)]
public string ErrorCode { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | Code of error (if operation failed). |
ErrorDetails
Declaration
[DataMember(EmitDefaultValue = false)]
public string ErrorDetails { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | Error details (if operation failed) |
Successful
Declaration
[DataMember(IsRequired = true)]
public bool Successful { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean | Whether operation was successful or not. This is a mandatory property |