Class VopStatusCodeExtensions
Extensions for converting VopStatusCode to/from strings and more.
Inheritance
System.Object
VopStatusCodeExtensions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Subsembly.Sepa.dll
Syntax
public static class VopStatusCodeExtensions
Fields
PDNG
Declaration
public const string PDNG = "PDNG"
Field Value
Type |
Description |
System.String |
|
RCVC
RCVC: Received Verification Completed (Match)
Declaration
public const string RCVC = "RCVC"
Field Value
Type |
Description |
System.String |
|
RVMC
RVMC: Received Verification Completed Match Closely (CloseMatch)
Declaration
public const string RVMC = "RVMC"
Field Value
Type |
Description |
System.String |
|
RVNA
RVNA: Received Verification Completed Not Applicable (NotApplicable)
Declaration
public const string RVNA = "RVNA"
Field Value
Type |
Description |
System.String |
|
RVNM
RVNM: Received Verification Completed No Match (NoMatch)
Declaration
public const string RVNM = "RVNM"
Field Value
Type |
Description |
System.String |
|
Methods
FromString(String)
Converts a four letter VOP result code to the corresponding
VopStatusCode enumeration value.
Declaration
public static VopStatusCode FromString(string sCode)
Parameters
Type |
Name |
Description |
System.String |
sCode |
The code to convert. If this is null or an empty string, then a zero
enumeration value is returned.
|
Returns
Exceptions
Type |
Condition |
System.ArgumentException |
|
GetDescription(VopStatusCode)
Declaration
public static string GetDescription(VopStatusCode nCode)
Parameters
Returns
Type |
Description |
System.String |
|
Exceptions
Type |
Condition |
System.ArgumentException |
|
IsValid(VopStatusCode)
Indicates whether nCode
is a known Verification of Payee
status value.
Declaration
public static bool IsValid(VopStatusCode nCode)
Parameters
Returns
Type |
Description |
System.Boolean |
|
ToString(VopStatusCode)
Converts the VopStatusCode to its corresponding four letter
code string.
Declaration
public static string ToString(VopStatusCode nCode)
Parameters
Returns
Type |
Description |
System.String |
The four letter code string, or null if the given
VopStatusCode was zero.
|
Exceptions
Type |
Condition |
System.ArgumentException |
|