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

listTagsByNotebook() public method

public listTagsByNotebook ( string authenticationToken, string notebookGuid ) : List
authenticationToken string
notebookGuid string
return List
      public List<Evernote.EDAM.Type.Tag> listTagsByNotebook(string authenticationToken, string notebookGuid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_listTagsByNotebook(authenticationToken, notebookGuid);
        return recv_listTagsByNotebook();

        #else
        var asyncResult = Begin_listTagsByNotebook(null, null, authenticationToken, notebookGuid);
        return End_listTagsByNotebook(asyncResult);

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