Enum SwiftCharsets
Enumerates the most important SWIFT character sets.
Namespace: Subsembly.Swift
Assembly: Subsembly.Sepa.dll
Syntax
[Flags]
public enum SwiftCharsets
Fields
Name | Description |
---|---|
All | All characters, including CR and LF, that may appear inside a SWIFT message. |
Alpha | Upper case capital letters 'A' through 'Z' only. Designated as 'a' in SWIFT syntax tables. |
AlphaNumeric | Upper case capital letters 'A' through 'Z' and digits '0' through '9' only. Designated as 'c' in SWIFT syntax tables. |
Blank | A space character. |
Comma | The SWIFT decimal comma ','. |
Decimal | Digits '0' through '9' and a single comma ',' only. Designated as 'd' in SWIFT syntax tables. |
LowerAlpha | Lower case letters 'a' through 'z' only. |
None | Character set is undefined. Nothing will be accepted at all. |
Numeric | Digits '0' through '9' only. Designated as 'n' in SWIFT syntax tables. |
Word | Any digit or upper or lower case letter. |