Evernote.EDAM.NoteStore.NoteStore.Client.expungeSharedNotebooks C# (CSharp) Méthode

expungeSharedNotebooks() public méthode

public expungeSharedNotebooks ( string authenticationToken, List sharedNotebookIds ) : int
authenticationToken string
sharedNotebookIds List
Résultat 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