Class FunctionValidationError
Carries information about a function validation error.
Inheritance
System.Object
FunctionValidationError
Implements
Namespace: MESL.SqlRace.Domain.Functions
Assembly: MESL.SqlRace.Domain.dll
Syntax
public class FunctionValidationError : Object, IFunctionValidationError
Constructors
FunctionValidationError(UInt32, String)
Initializes a new instance of the FunctionValidationError class.
Declaration
public FunctionValidationError(uint errorId, string errorText)
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | errorId | The error identifier. |
System.String | errorText | The error text. |
Properties
ErrorId
Gets the error identifier.
Declaration
public uint ErrorId { get; set; }
Property Value
Type | Description |
---|---|
System.UInt32 | The error identifier. |
ErrorText
Gets the error text.
Declaration
public string ErrorText { get; set; }
Property Value
Type | Description |
---|---|
System.String | The error text. |