Interface IBinaryDataType
- Namespace
- PushTechnology.ClientInterface.Data.Binary
- Assembly
- Diffusion.Client.dll
The binary data type.
public interface IBinaryDataType : IDataType<IBinary>, IDataType
- Inherited Members
Remarks
IBinary values can be used to store and transmit arbitrary information. The responsibility for formatting and interpreting the information belongs solely to the application. Before using binary for a topic, consider other data types such as IJSON or single value topic types; these may provide a simpler interface for your application.
The implementation provides support for binary deltas.
Since 5.8
Properties
BinaryDeltaType
Returns support for binary deltas.
IDeltaType<IBinary, IBinaryDelta> BinaryDeltaType { get; }
Property Value
- IDeltaType<IBinary, IBinaryDelta>
Support for binary deltas.
Remarks
Equivalent to calling DeltaType(typeof(IBinaryDelta)).