FileTransferMode Enumeration |
** NOTE: ADDED in CFX 1.4 **
Specifies the method of file transfer. [CLICK HERE](https://en.wikipedia.org/wiki/Out-of-band_data) for more information on transfer modes
Namespace: CFX.StructuresAssembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntaxpublic enum FileTransferMode
Public Enumeration FileTransferMode
MembersMember name | Value | Description |
---|
InBand | 0 |
Data is transfered directly within the CFX message structure / AMQP protocol channel.
Direct, in-band file transfer is not recommended for larger data files. Many AMQP message broker platforms
limit the maximum total message size of an AMQP message. Microsoft's Azure message bus, for example, limits messages
to 256KB for a standard subscription, and 1MB for a premium subscription. RabbitMQ recommends limiting messages to 128MB or less.
Use OutOfBand transfer for larger file sizes.
|
OutOfBand | 1 |
Data is transferred indirectly, outside the AMQP message stream, via the use of a secure URL.
|
See Also