Evernote.EDAM.UserStore.UserStore.Client.recv_getNoteStoreUrl C# (CSharp) 메소드

recv_getNoteStoreUrl() 공개 메소드

public recv_getNoteStoreUrl ( ) : string
리턴 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");
      }