Example #1
0
 public void ReadFromBitStream(ReadOnlyBitStream bitStream)
 {
     magicNumber       = bitStream.ReadUInt32();
     versionMajor      = bitStream.ReadUInt16();
     versionMinor      = bitStream.ReadUInt16();
     timeZone          = bitStream.ReadInt32();
     timestampAccuracy = bitStream.ReadUInt32();
     snapshotLength    = bitStream.ReadUInt32();
     linkType          = bitStream.ReadUInt32();
 }