Exemple #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));
        }
Exemple #2
0
 /** <inheritdoc /> */
 public IBinaryType GetBinaryType()
 {
     return(_marsh.GetBinaryType(_typeId));
 }
Exemple #3
0
 /** <inheritDoc /> */
 public IBinaryType GetBinaryType(int typeId)
 {
     return(Marshaller.GetBinaryType(typeId));
 }
Exemple #4
0
 /** <inheritdoc /> */
 public IBinaryType GetBinaryType()
 {
     return(_marsh.GetBinaryType(_header.TypeId));
 }