Apache.Hadoop.Hive.ThriftHiveMetastore.Client.send_create_type C# (CSharp) Method

send_create_type() public method

public send_create_type ( Type type ) : void
type Type
return void
            public void send_create_type(Type type)
            {
                oprot_.WriteMessageBegin(new TMessage("create_type", TMessageType.Call, seqid_));
                create_type_args args = new create_type_args();
                args.Type = type;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                oprot_.Transport.Flush();
            }
ThriftHiveMetastore.Client