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

expungeSharedNotebooks() public method

public expungeSharedNotebooks ( string authenticationToken, List sharedNotebookIds ) : int
authenticationToken string
sharedNotebookIds List
return int
      public int expungeSharedNotebooks(string authenticationToken, List<long> sharedNotebookIds)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_expungeSharedNotebooks(authenticationToken, sharedNotebookIds);
        return recv_expungeSharedNotebooks();

        #else
        var asyncResult = Begin_expungeSharedNotebooks(null, null, authenticationToken, sharedNotebookIds);
        return End_expungeSharedNotebooks(asyncResult);

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