public void Insert(string title, int depth, string text)
        {
            if (_last == null)
            {
                _last = _root;
            }
            SiteMapBuilderNode entry = new SiteMapBuilderNode(title, depth, text);

            _last = _last.AddNode(entry);
        }