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

getNoteTagNames() public method

public getNoteTagNames ( string authenticationToken, string guid ) : List
authenticationToken string
guid string
return List
      public List<string> getNoteTagNames(string authenticationToken, string guid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getNoteTagNames(authenticationToken, guid);
        return recv_getNoteTagNames();

        #else
        var asyncResult = Begin_getNoteTagNames(null, null, authenticationToken, guid);
        return End_getNoteTagNames(asyncResult);

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