Apache.Hadoop.Hbase.Thrift2.THBaseService.Client.recv_checkAndPut C# (CSharp) Method

recv_checkAndPut() public method

public recv_checkAndPut ( ) : bool
return bool
            public bool recv_checkAndPut()
            {
                TMessage msg = iprot_.ReadMessageBegin();
                if (msg.Type == TMessageType.Exception) {
                  TApplicationException x = TApplicationException.Read(iprot_);
                  iprot_.ReadMessageEnd();
                  throw x;
                }
                checkAndPut_result result = new checkAndPut_result();
                result.Read(iprot_);
                iprot_.ReadMessageEnd();
                if (result.__isset.success) {
                  return result.Success;
                }
                if (result.__isset.io) {
                  throw result.Io;
                }
                throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "checkAndPut failed: unknown result");
            }