コード例 #1
0
        public ExchangeProperty(BTHDataEntry entry, BTH heap)
        {
            //this.entry = entry;

            this.Key = entry.Data.RangeSubset(2, entry.Data.Length - 2);
            this.ID = BitConverter.ToUInt16(entry.Key, 0);
            this.Type = BitConverter.ToUInt16(entry.Data, 0);

            this.GetData(heap);
        }
コード例 #2
0
        public ExchangeProperty(BTHDataEntry entry, BTH heap)
        {
            //this.entry = entry;

            this.Key  = entry.Data.RangeSubset(2, entry.Data.Length - 2);
            this.ID   = BitConverter.ToUInt16(entry.Key, 0);
            this.Type = BitConverter.ToUInt16(entry.Data, 0);

            this.GetData(heap);
        }
コード例 #3
0
ファイル: ExchangeProperty.cs プロジェクト: dbrant/PST-Parser
        public ExchangeProperty(BTHDataEntry entry, BTH heap)
        {
            //this.entry = entry;

            Key  = entry.Data.RangeSubset(2, entry.Data.Length - 2);
            ID   = (MessageProperty)BitConverter.ToUInt16(entry.Key, 0);
            Type = (PropType)BitConverter.ToUInt16(entry.Data, 0);

            GetData(heap);
        }