System.Xml.Schema.XsdBuilder.StartChildren C# (CSharp) Méthode

StartChildren() private méthode

private StartChildren ( ) : void
Résultat 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