Class GetValueToBeValidatedResponse
A response/result type for the IGetsValueToBeValidated service.
Inheritance
System.Object
GetValueToBeValidatedResponse
Implements
System.IEquatable<GetValueToBeValidatedResponse>
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: CSF.Validation.RuleExecution
Assembly: CSF.Validation.Abstractions.dll
Syntax
public abstract class GetValueToBeValidatedResponse : IEquatable<GetValueToBeValidatedResponse>
Properties
| Improve this Doc View SourceIsSuccess
Gets a value that indicates whether ornot the current instance represents success.
Declaration
public abstract bool IsSuccess { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
| Improve this Doc View SourceEquals(GetValueToBeValidatedResponse)
Gets a value that indicates whether or not the current instance is equal to the specified GetValueToBeValidatedResponse.
Declaration
public abstract bool Equals(GetValueToBeValidatedResponse other)
Parameters
Type | Name | Description |
---|---|---|
GetValueToBeValidatedResponse | other | The value response. |
Returns
Type | Description |
---|---|
System.Boolean | true if the current instance is equal to the specified valuse response; false otherwise. |
Equals(Object)
Gets a value that indicates whether or not the current instance is equal to the specified object.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | An object |
Returns
Type | Description |
---|---|
System.Boolean | true if the current instance is equal to the specified object; false otherwise. |
Overrides
System.Object.Equals(System.Object)
|
Improve this Doc
View Source
GetHashCode()
Gets a value which may serve as a hash code for the current instance.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | A hash code value. |
Overrides
System.Object.GetHashCode()
Implements
System.IEquatable<T>