Click or drag to resize
IPacket Interface
Packets are disposable contigous allocations of memory which have been created or transferred.

Namespace: Ozeki.Camera
Assembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntax
public interface IPacket : IDisposable

The IPacket type exposes the following members.

Methods
  NameDescription
Public methodCompleteFrom
Completes the IPacket if IsComplete and Disposed is false.
Public methodPrepare
Creates a sequence of bytes which correspond to the IPacket in binary format suitable to be sent on a network.
Top
Properties
  NameDescription
Public propertyCreated
Gets a value indciating when the IPacket was created.
Public propertyDisposed
Public propertyIsComplete
Determines if the IPacket is completely in memory.
Public propertyIsReadOnly
Determines if the IPacket can be modified.
Public propertyLength
The length in bytes of the packet
Public propertyTransferred
Gets a value indicating when the NetworkPacket was sent. If null then the IPacket was not yet set.
Top
See Also