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

expungeInactiveNotes() public method

public expungeInactiveNotes ( string authenticationToken ) : int
authenticationToken string
return int
      public int expungeInactiveNotes(string authenticationToken)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_expungeInactiveNotes(authenticationToken);
        return recv_expungeInactiveNotes();

        #else
        var asyncResult = Begin_expungeInactiveNotes(null, null, authenticationToken);
        return End_expungeInactiveNotes(asyncResult);

        #endif
      }
      #if SILVERLIGHT || NETFX_CORE
NoteStore.Client