Evernote.EDAM.UserStore.UserStore.Client.recv_getNoteStoreUrl C# (CSharp) Method

recv_getNoteStoreUrl() public method

public recv_getNoteStoreUrl ( ) : string
return string
      public string recv_getNoteStoreUrl()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        getNoteStoreUrl_result result = new getNoteStoreUrl_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, "getNoteStoreUrl failed: unknown result");
      }