[TIBCO.EMS .NET client library 8.1 documentation]

Get and set the delivery mode using one of the enum MessageDeliveryMode value.

Namespace:  TIBCO.EMS
Assembly:  TIBCO.EMS (in TIBCO.EMS.dll)

Syntax

public MessageDeliveryMode MsgDeliveryMode { get; set; }
Public Property MsgDeliveryMode As MessageDeliveryMode
public:
property MessageDeliveryMode MsgDeliveryMode {
	MessageDeliveryMode get ();
	void set (MessageDeliveryMode value);
}

Remarks

This parallel property accesses the same default value as DeliveryMode, but using enumerated values (instead of ordinary integers). We recommend it over the ordinary integer-valued accessor, because it enables .NET to do stronger type checking at compile time, which can enhance program reliability.

See Also