Apache.Cassandra.Cassandra.Client.send_login C# (CSharp) Method

send_login() public method

public send_login ( AuthenticationRequest auth_request ) : void
auth_request AuthenticationRequest
return void
      public void send_login(AuthenticationRequest auth_request)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("login", TMessageType.Call, seqid_));
        login_args args = new login_args();
        args.Auth_request = auth_request;
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        #if SILVERLIGHT
        return oprot_.Transport.BeginFlush(callback, state);
        #else
        oprot_.Transport.Flush();
        #endif
      }

Same methods

Cassandra.Client::send_login ( AsyncCallback callback, object state, AuthenticationRequest auth_request ) : IAsyncResult
Cassandra.Client