Show / Hide Table of Contents

Class RemoteServiceValidationErrorInfo

Used to store information about a validation error.

Inheritance
System.Object
RemoteServiceValidationErrorInfo
Namespace: Volo.Abp.Http
Assembly: Volo.Abp.Http.dll
Syntax
public class RemoteServiceValidationErrorInfo : object

Constructors

RemoteServiceValidationErrorInfo()

Creates a new instance of RemoteServiceValidationErrorInfo.

Declaration
public RemoteServiceValidationErrorInfo()

RemoteServiceValidationErrorInfo(String)

Creates a new instance of RemoteServiceValidationErrorInfo.

Declaration
public RemoteServiceValidationErrorInfo(string message)
Parameters
Type Name Description
System.String message

Validation error message

RemoteServiceValidationErrorInfo(String, String)

Creates a new instance of RemoteServiceValidationErrorInfo.

Declaration
public RemoteServiceValidationErrorInfo(string message, string member)
Parameters
Type Name Description
System.String message

Validation error message

System.String member

Related invalid member

RemoteServiceValidationErrorInfo(String, String[])

Creates a new instance of RemoteServiceValidationErrorInfo.

Declaration
public RemoteServiceValidationErrorInfo(string message, string[] members)
Parameters
Type Name Description
System.String message

Validation error message

System.String[] members

Related invalid members

Properties

Members

Relate invalid members (fields/properties).

Declaration
public string[] Members { get; set; }
Property Value
Type Description
System.String[]

Message

Validation error message.

Declaration
public string Message { get; set; }
Property Value
Type Description
System.String

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft