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

expungeLinkedNotebook() public method

public expungeLinkedNotebook ( string authenticationToken, string guid ) : int
authenticationToken string
guid string
return int
      public int expungeLinkedNotebook(string authenticationToken, string guid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_expungeLinkedNotebook(authenticationToken, guid);
        return recv_expungeLinkedNotebook();

        #else
        var asyncResult = Begin_expungeLinkedNotebook(null, null, authenticationToken, guid);
        return End_expungeLinkedNotebook(asyncResult);

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