Class DeliveryType

Content delivery type.

Inheritance
System.Object
AdvancedEnum<DeliveryType>
CodeEnum<DeliveryType, System.Byte>
ByteCodeEnum<DeliveryType>
DeliveryType
Inherited Members
CodeEnum<DeliveryType, Byte>.Code
CodeEnum<DeliveryType, Byte>.Enum
CodeEnum<DeliveryType, Byte>.FromCode(Byte)
AdvancedEnum<DeliveryType>.INTERNAL_ENUM
AdvancedEnum<DeliveryType>.Name
AdvancedEnum<DeliveryType>.ValueOf(String)
AdvancedEnum<DeliveryType>.Values()
AdvancedEnum<DeliveryType>.ToString()
Namespace: PushTechnology.ClientInterface.Client.Types
Assembly: Diffusion.Client.dll
Syntax
public class DeliveryType : ByteCodeEnum<DeliveryType>

Fields

DELTA

When incremental delivery mode is in use then this indicates that the content represents a delta of change to the topic state.

Declaration
public static readonly DeliveryType DELTA
Field Value
Type Description
DeliveryType

The delta delivery type.

MESSAGE

This indicates delivery of content that was sent to the Client through the topic as opposed to a data update.

Declaration
public static readonly DeliveryType MESSAGE
Field Value
Type Description
DeliveryType

The message delivery type.

SNAPSHOT

The content is a complete representation of topic state or the delivery mode is simple.

Declaration
public static readonly DeliveryType SNAPSHOT
Field Value
Type Description
DeliveryType

The snapshot delivery type.

Back to top