System.Xml.Schema.XsdBuilder.StartChildren C# (CSharp) Method

StartChildren() private method

private StartChildren ( ) : void
return void
        internal override void StartChildren()
        {
            if (_xso != null)
            {
                if (_namespaces != null && _namespaces.Count > 0)
                {
                    _xso.Namespaces.Namespaces = _namespaces;
                    _namespaces = null;
                }
                if (_unhandledAttributes.Count != 0)
                {
                    _xso.SetUnhandledAttributes((XmlAttribute[])_unhandledAttributes.ToArray(typeof(System.Xml.XmlAttribute)));
                    _unhandledAttributes.Clear();
                }
            }
        }
XsdBuilder