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

send_expungeInactiveNotes() public method

public send_expungeInactiveNotes ( string authenticationToken ) : void
authenticationToken string
return void
      public void send_expungeInactiveNotes(string authenticationToken)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("expungeInactiveNotes", TMessageType.Call, seqid_));
        expungeInactiveNotes_args args = new expungeInactiveNotes_args();
        args.AuthenticationToken = authenticationToken;
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        #if SILVERLIGHT || NETFX_CORE
        return oprot_.Transport.BeginFlush(callback, state);
        #else
        oprot_.Transport.Flush();
        #endif
      }

Same methods

NoteStore.Client::send_expungeInactiveNotes ( AsyncCallback callback, object state, string authenticationToken ) : IAsyncResult
NoteStore.Client