Ejemplo n.º 1
0
        public bool IsSignature(CustomBinaryReader reader)
        {
            int type = reader.PeekChar();

            return(type == 0x01);
        }
Ejemplo n.º 2
0
        protected override bool SuppressElement(CustomBinaryReader reader)
        {
            int type = reader.PeekChar();

            return(type == 0x01);
        }
Ejemplo n.º 3
0
 protected override bool SuppressElement(CustomBinaryReader reader)
 {
     int type=reader.PeekChar();
     return type == 0x01;
 }