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

recv_authenticateToSharedNote() public method

public recv_authenticateToSharedNote ( ) : Evernote.EDAM.UserStore.AuthenticationResult
return Evernote.EDAM.UserStore.AuthenticationResult
      public Evernote.EDAM.UserStore.AuthenticationResult recv_authenticateToSharedNote()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        authenticateToSharedNote_result result = new authenticateToSharedNote_result();
        result.Read(iprot_);
        iprot_.ReadMessageEnd();
        if (result.__isset.success) {
          return result.Success;
        }
        if (result.__isset.userException) {
          throw result.UserException;
        }
        if (result.__isset.notFoundException) {
          throw result.NotFoundException;
        }
        if (result.__isset.systemException) {
          throw result.SystemException;
        }
        throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "authenticateToSharedNote failed: unknown result");
      }
NoteStore.Client