Class ResponseState
State enum for a response, describes the possible states from totally Ok to Error that an action can return
Namespace: SuperOffice.CRM
Assembly: SuperOffice.Plugins.dll
Syntax
public sealed class ResponseState : Enum
Fields
Error
3: The operation did not complete. The user should be told of the error
Declaration
public const ResponseState Error
Field Value
Type | Description |
---|---|
ResponseState |
Ok
0: The operation completed normally - nothing to see here
Declaration
public const ResponseState Ok
Field Value
Type | Description |
---|---|
ResponseState |
OkWithInfo
1: The operation completed, but there is some information that should be shown or logged
Declaration
public const ResponseState OkWithInfo
Field Value
Type | Description |
---|---|
ResponseState |
value__
State enum for a response, describes the possible states from totally Ok to Error that an action can return
Declaration
public int value__
Field Value
Type | Description |
---|---|
Int32 |
Warning
2: The operation completed, possibly in a degraded fashion. The user should be warned
Declaration
public const ResponseState Warning
Field Value
Type | Description |
---|---|
ResponseState |
Extension Methods
EnumUtil.MapEnums<From, To>(From)