Click or drag to resize

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.Structures
Assembly: CFX (in CFX.dll) Version: 1.7.3
Syntax
public enum FileTransferMode
Members
Member nameValueDescription
InBand0 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.
OutOfBand1 Data is transferred indirectly, outside the AMQP message stream, via the use of a secure URL.
See Also