Exemplo n.º 1
0
        private string GetURL(string key)
        {
            var value = "";

            if (LinkURLS == null || !LinkURLS.ContainsKey(key))
            {
                return(value);
            }

            LinkURLS.TryGetValue(key, out value);
            return(value);
        }
Exemplo n.º 2
0
        private string GetURL(string key)
        {
            var value = "";

            if (LinkURLS == null)
            {
                return(value);
            }

            LinkURLS.TryGetValue("self", out value);
            return(value);
        }