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

recv_stopSharingNote() public method

public recv_stopSharingNote ( ) : void
return void
      public void recv_stopSharingNote()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        stopSharingNote_result result = new stopSharingNote_result();
        result.Read(iprot_);
        iprot_.ReadMessageEnd();
        if (result.__isset.userException) {
          throw result.UserException;
        }
        if (result.__isset.notFoundException) {
          throw result.NotFoundException;
        }
        if (result.__isset.systemException) {
          throw result.SystemException;
        }
        return;
      }
NoteStore.Client