MAPIInspector.Parsers.FastTransferStream.ReadInt16 C# (CSharp) Метод

ReadInt16() публичный Метод

Read a short value from stream,and advance the position within the stream by 2
public ReadInt16 ( ) : short
Результат short
        public short ReadInt16()
        {
            byte[] buffer = new byte[2];
            this.Read(buffer, 0, buffer.Length);
            return BitConverter.ToInt16(buffer, 0);
        }

Usage Example

 /// <summary>
 /// Parse next object from a FastTransferStream.
 /// </summary>
 /// <param name="stream">A FastTransferStream</param>
 public override void Parse(FastTransferStream stream)
 {
     base.Parse(stream);
     PropertyDataType type = (PropertyDataType)this.PropType;
     this.Length = stream.ReadInt16();
     switch (type)
     {
         case PropertyDataType.PtypMultipleInteger16:
             this.FixedSizeValueList = stream.ReadBlocks(this.Length, 2);
             break;
         case PropertyDataType.PtypMultipleInteger32:
             this.FixedSizeValueList = stream.ReadBlocks(this.Length, 4);
             break;
         case PropertyDataType.PtypMultipleFloating32:
             this.FixedSizeValueList = stream.ReadBlocks(this.Length, 4);
             break;
         case PropertyDataType.PtypMultipleFloating64:
             this.FixedSizeValueList = stream.ReadBlocks(this.Length, 8);
             break;
         case PropertyDataType.PtypMultipleCurrency:
             this.FixedSizeValueList = stream.ReadBlocks(this.Length, 8);
             break;
         case PropertyDataType.PtypMultipleFloatingTime:
             this.FixedSizeValueList = stream.ReadBlocks(this.Length, 8);
             break;
         case PropertyDataType.PtypMultipleInteger64:
             this.FixedSizeValueList = stream.ReadBlocks(this.Length, 8);
             break;
         case PropertyDataType.PtypMultipleTime:
             this.FixedSizeValueList = stream.ReadBlocks(this.Length, 8);
             break;
         case PropertyDataType.PtypMultipleGuid:
             this.FixedSizeValueList = stream.ReadBlocks(this.Length, Guid.Empty.ToByteArray().Length);
             break;
         case PropertyDataType.PtypMultipleBinary:
             this.VarSizeValueList = stream.ReadLengthBlocks(this.Length);
             break;
         case PropertyDataType.PtypMultipleString:
             this.VarSizeValueList = stream.ReadLengthBlocks(this.Length);
             break;
         case PropertyDataType.PtypMultipleString8:
             this.VarSizeValueList = stream.ReadLengthBlocks(this.Length);
             break;
     }
 }
All Usage Examples Of MAPIInspector.Parsers.FastTransferStream::ReadInt16