Apache.Cassandra.Cassandra.describe_cluster_name_args.Write(TProtocol)

Here are the examples of the csharp api class Apache.Cassandra.Cassandra.describe_cluster_name_args.Write(TProtocol) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: hectorsharp
Source File: Cassandra.cs
public void send_describe_cluster_name()
      {
        oprot_.WriteMessageBegin(new TMessage("describe_cluster_name", TMessageType.Call, seqid_));
        describe_cluster_name_args args = new describe_cluster_name_args();
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        oprot_.Transport.Flush();
      }

2. Example

Project: cassandra-sharp
Source File: Cassandra.cs
public void send_describe_cluster_name()
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("describe_cluster_name", TMessageType.Call, seqid_));
        describe_cluster_name_args args = new describe_cluster_name_args();
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        #if SILVERLIGHT
        return oprot_.Transport.BeginFlush(callback, state);
        #else
        oprot_.Transport.Flush();
        #endif
      }