Evernote.EDAM.NoteStore.NoteStore.Processor.stopSharingNote_Process C# (CSharp) Method

stopSharingNote_Process() public method

public stopSharingNote_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot TProtocol
oprot TProtocol
return void
      public void stopSharingNote_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        stopSharingNote_args args = new stopSharingNote_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        stopSharingNote_result result = new stopSharingNote_result();
        try {
          iface_.stopSharingNote(args.AuthenticationToken, args.Guid);
        } catch (Evernote.EDAM.Error.EDAMUserException userException) {
          result.UserException = userException;
        } catch (Evernote.EDAM.Error.EDAMNotFoundException notFoundException) {
          result.NotFoundException = notFoundException;
        } catch (Evernote.EDAM.Error.EDAMSystemException systemException) {
          result.SystemException = systemException;
        }
        oprot.WriteMessageBegin(new TMessage("stopSharingNote", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor