public void Read(NDRParser parser)
 {
     parser.BeginStructure();
     Use         = (LsaSIDNameUse)parser.ReadUInt16();
     RelativeId  = parser.ReadUInt32();
     DomainIndex = parser.ReadUInt32();
     parser.EndStructure();
 }
Example #2
0
        public void Read(NDRParser parser)
        {
            parser.BeginStructure();
            Use = (LsaSIDNameUse)parser.ReadUInt32();

            parser.ReadStructure(unicode_string);
            DomainIndex = parser.ReadUInt32();
            parser.EndStructure();
        }