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

expungeNotebook() public method

public expungeNotebook ( string authenticationToken, string guid ) : int
authenticationToken string
guid string
return int
      public int expungeNotebook(string authenticationToken, string guid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_expungeNotebook(authenticationToken, guid);
        return recv_expungeNotebook();

        #else
        var asyncResult = Begin_expungeNotebook(null, null, authenticationToken, guid);
        return End_expungeNotebook(asyncResult);

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