System.Xml.Serialization.XmlSchemaImporter.IsAllGroup C# (CSharp) Метод

IsAllGroup() приватный Метод

private IsAllGroup ( XmlSchemaType type ) : bool
type System.Xml.Schema.XmlSchemaType
Результат bool
        private bool IsAllGroup(XmlSchemaType type)
        {
            TypeItems items = GetTypeItems(type);
            return (items.Particle != null) && (items.Particle is XmlSchemaAll);
        }