GetDataStructureType() public abstract method

public abstract GetDataStructureType ( ) : byte
return byte
Beispiel #1
0
        public void addMarshaller(BaseDataStreamMarshaller marshaller)
        {
            byte type = marshaller.GetDataStructureType();

            lock (this.marshalLock)
            {
                dataMarshallers[type & 0xFF] = marshaller;
            }
        }
Beispiel #2
0
 public void addMarshaller(BaseDataStreamMarshaller marshaller)
 {
     byte type = marshaller.GetDataStructureType();
     dataMarshallers[type & 0xFF] = marshaller;
 }