IChannel Interface

Represents a protocol independent interface representation of any data type that can be parsed or generated.
This is the base interface implemented by all parsing/generating classes in the phasor protocols library; it is the root of the parsing/generating interface hierarchy.

Definition

Namespace: Gemstone.PhasorProtocols
Assembly: Gemstone.PhasorProtocols (in Gemstone.PhasorProtocols.dll) Version: 1.0.136 -- Release Build+4bc8539cc260b23af1f55a058712d0a5186ff49a
public interface IChannel : ISupportBinaryImage
Implements
ISupportBinaryImage

Properties

Attributes Gets a DictionaryTKey, TValue of string based property names and values for this IChannel object.
BinaryLength Gets the length of the binary image.
(Inherited from ISupportBinaryImage)
State Gets or sets the parsing state for this IChannel object.
Tag Gets or sets a user definable reference to an object associated with this IChannel object.

Methods

GenerateBinaryImage(Byte[], Int32) Generates binary image of the object and copies it into the given buffer, for BinaryLength bytes.
(Inherited from ISupportBinaryImage)
ParseBinaryImage(Byte[], Int32, Int32) Initializes object by parsing the specified buffer containing a binary image.
(Inherited from ISupportBinaryImage)

Extension Methods

CopyImage This is a common optimized block copy function for any kind of data.
(Defined by Common)

See Also