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

listSearches() public method

public listSearches ( string authenticationToken ) : List
authenticationToken string
return List
      public List<Evernote.EDAM.Type.SavedSearch> listSearches(string authenticationToken)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_listSearches(authenticationToken);
        return recv_listSearches();

        #else
        var asyncResult = Begin_listSearches(null, null, authenticationToken);
        return End_listSearches(asyncResult);

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