Class RemoteServiceErrorInfo
Inheritance
object
RemoteServiceErrorInfo
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.Http
Assembly: Volo.Abp.ExceptionHandling.dll
Syntax
public class RemoteServiceErrorInfo
Constructors
RemoteServiceErrorInfo()
Declaration
public RemoteServiceErrorInfo()
RemoteServiceErrorInfo(string, string?, string?, IDictionary?)
Declaration
public RemoteServiceErrorInfo(string message, string? details = null, string? code = null, IDictionary? data = null)
Parameters
Type | Name | Description |
---|---|---|
string | message | |
string | details | |
string | code | |
System.Collections.IDictionary | data |
Properties
Code
Declaration
public string? Code { get; set; }
Property Value
Type | Description |
---|---|
string |
Data
Declaration
public IDictionary? Data { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.IDictionary |
Details
Declaration
public string? Details { get; set; }
Property Value
Type | Description |
---|---|
string |
Message
Declaration
public string? Message { get; set; }
Property Value
Type | Description |
---|---|
string |
ValidationErrors
Declaration
public RemoteServiceValidationErrorInfo[]? ValidationErrors { get; set; }
Property Value
Type | Description |
---|---|
RemoteServiceValidationErrorInfo[] |