Enum SwiftFieldType
Enumerates the SWIFT field types that are differentiated by the SwiftField class FieldType property.
Namespace: Subsembly.Swift
Assembly: Subsembly.Sepa.dll
Syntax
public enum SwiftFieldType
Fields
Name | Description |
---|---|
EndOfBlock | An End-Of-Block SWIFT field is a special case of a non-generic SWIFT field that consists of the Tag value 16S and the name of the block in the Content. |
EndOfText | An End-Of-Text SWIFT field actually is no SWIFT field at all, but a special marker that consists solely of a CRLF followed by a dash. Neither of the other SwiftField properties is set. |
GenericField | A generic SWIFT field consists of a Tag, an optional Qualifier, an optional DataSourceScheme , and Content. |
NonGenericField | A non-generic SWIFT field solely consists of a Tag and Content. |
Null | Initial FieldType property value for an uninitialized SwiftField instance. |
Sequence | This is a pseudo-type used to mark instances of the derived SwiftFieldSequence class, which collects a sequence of other SwiftField instances. |
StartOfBlock | A Start-Of-Block SWIFT field is a special case of a non-generic SWIFT field that consists of the Tag value 16R and the name of the block in the Content. |