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

expungeNote() public method

public expungeNote ( string authenticationToken, string guid ) : int
authenticationToken string
guid string
return int
      public int expungeNote(string authenticationToken, string guid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_expungeNote(authenticationToken, guid);
        return recv_expungeNote();

        #else
        var asyncResult = Begin_expungeNote(null, null, authenticationToken, guid);
        return End_expungeNote(asyncResult);

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