internal ConnectionScope CreateChild(string guid)
        {
            var scope = _connection.CreateScope(guid);

            _children.Add(scope);
            scope.Parent = this;
            return(scope);
        }