Represents GLOBSET structure is a set of GLOBCNT structures, that are reduced to one or more GLOBCNT ranges. A GLOBCNT range is created using any of the commands
Inheritance: MAPIInspector.Parsers.BaseStructure
コード例 #1
0
 /// <summary>
 /// Parse from a stream.
 /// </summary>
 /// <param name="stream">A stream contains IDSET_REPLID.</param>
 public void Parse(FastTransferStream stream)
 {
     this.REPLID = stream.ReadUInt16();
     this.GLOBSET = new GLOBSET();
     this.GLOBSET.Parse(stream);
 }
コード例 #2
0
 /// <summary>
 /// Parse from a stream.
 /// </summary>
 /// <param name="stream">A stream contains IDSET_REPLGUID.</param>
 public void Parse(FastTransferStream stream)
 {
     this.REPLGUID = stream.ReadGuid();
     this.GLOBSET = new GLOBSET();
     this.GLOBSET.Parse(stream);
 }