/// <summary> /// Gets metadata for the given type ID. /// </summary> /// <param name="typeId">Type ID.</param> /// <returns>Metadata or null.</returns> public IBinaryType GetBinaryType(int typeId) { if (Ignite != null) { IBinaryType meta = Ignite.GetBinaryType(typeId); if (meta != null) { return(meta); } } return(BinaryType.Empty); }