Evernote.EDAM.NoteStore.NoteStore.Client.recv_getSyncChunk C# (CSharp) Method

recv_getSyncChunk() public method

public recv_getSyncChunk ( ) : SyncChunk
return SyncChunk
      public SyncChunk recv_getSyncChunk()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        getSyncChunk_result result = new getSyncChunk_result();
        result.Read(iprot_);
        iprot_.ReadMessageEnd();
        if (result.__isset.success) {
          return result.Success;
        }
        if (result.__isset.userException) {
          throw result.UserException;
        }
        if (result.__isset.systemException) {
          throw result.SystemException;
        }
        throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getSyncChunk failed: unknown result");
      }
NoteStore.Client