Ejemplo n.º 1
0
        /** <inheritDoc /> */
        public IBinaryType GetBinaryType(Type type)
        {
            IgniteArgumentCheck.NotNull(type, "type");

            var desc = Marshaller.GetDescriptor(type);

            return(desc == null ? null : Marshaller.GetBinaryType(desc.TypeId));
        }
Ejemplo n.º 2
0
 /** <inheritdoc /> */
 public IBinaryType GetBinaryType()
 {
     return(_marsh.GetBinaryType(_typeId));
 }
Ejemplo n.º 3
0
 /** <inheritDoc /> */
 public IBinaryType GetBinaryType(int typeId)
 {
     return(Marshaller.GetBinaryType(typeId));
 }
Ejemplo n.º 4
0
 /** <inheritdoc /> */
 public IBinaryType GetBinaryType()
 {
     return(_marsh.GetBinaryType(_header.TypeId));
 }