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

deleteNote() public method

public deleteNote ( string authenticationToken, string guid ) : int
authenticationToken string
guid string
return int
      public int deleteNote(string authenticationToken, string guid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_deleteNote(authenticationToken, guid);
        return recv_deleteNote();

        #else
        var asyncResult = Begin_deleteNote(null, null, authenticationToken, guid);
        return End_deleteNote(asyncResult);

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