Class ErrorInfo
Represents a serializable error message.
Inherited Members
Namespace: Nevatech.Vsb.Repository.Description
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class ErrorInfo
Constructors
ErrorInfo()
Initializes and empty instance.
Declaration
public ErrorInfo()
ErrorInfo(String, Boolean)
Initializes new instance with provided message and warning flag.
Declaration
public ErrorInfo(string message, bool isWarning)
Parameters
Type | Name | Description |
---|---|---|
String | message | Error message. |
Boolean | isWarning | Flag indicating that error is a warning. |
Properties
IsWarning
Gets or sets flag indicating that error is a warning.
Declaration
public bool IsWarning { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Message
Gets or sets error message.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
String |