44 references to XmlAttributeFlags
dotnet-svcutil-lib (44)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlAttributes.cs (14)
59internal XmlAttributeFlags XmlFlags 63XmlAttributeFlags flags = 0; 64if (_xmlElements.Count > 0) flags |= XmlAttributeFlags.Elements; 65if (_xmlArrayItems.Count > 0) flags |= XmlAttributeFlags.ArrayItems; 66if (_xmlAnyElements.Count > 0) flags |= XmlAttributeFlags.AnyElements; 67if (_xmlArray != null) flags |= XmlAttributeFlags.Array; 68if (_xmlAttribute != null) flags |= XmlAttributeFlags.Attribute; 69if (_xmlText != null) flags |= XmlAttributeFlags.Text; 70if (_xmlEnum != null) flags |= XmlAttributeFlags.Enum; 71if (_xmlRoot != null) flags |= XmlAttributeFlags.Root; 72if (_xmlType != null) flags |= XmlAttributeFlags.Type; 73if (_xmlAnyAttribute != null) flags |= XmlAttributeFlags.AnyAttribute; 74if (_xmlChoiceIdentifier != null) flags |= XmlAttributeFlags.ChoiceIdentifier; 75if (_xmlns) flags |= XmlAttributeFlags.XmlnsDeclarations;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (30)
413if ((a.XmlFlags & ~(XmlAttributeFlags.Type | XmlAttributeFlags.Root)) != 0) 453if ((a.XmlFlags & ~XmlAttributeFlags.Root) != 0) 1230if ((a.XmlFlags & ~XmlAttributeFlags.Enum) != 0) 1530XmlAttributeFlags flags = a.XmlFlags; 1537XmlAttributeFlags elemFlags = XmlAttributeFlags.Elements | XmlAttributeFlags.Text | XmlAttributeFlags.AnyElements | XmlAttributeFlags.ChoiceIdentifier; 1538XmlAttributeFlags attrFlags = XmlAttributeFlags.Attribute | XmlAttributeFlags.AnyAttribute; 1539XmlAttributeFlags arrayFlags = XmlAttributeFlags.Array | XmlAttributeFlags.ArrayItems; 1754XmlAttributeFlags allFlags = XmlAttributeFlags.Elements | XmlAttributeFlags.Text | XmlAttributeFlags.Attribute | XmlAttributeFlags.AnyElements | XmlAttributeFlags.ChoiceIdentifier | XmlAttributeFlags.XmlnsDeclarations; 1846if (flags != XmlAttributeFlags.XmlnsDeclarations) 2035XmlAttributeFlags flags = a.XmlFlags; 2037if ((flags & (XmlAttributeFlags.Attribute | XmlAttributeFlags.AnyAttribute)) != 0) 2040if ((flags & (XmlAttributeFlags.Text | XmlAttributeFlags.AnyElements | XmlAttributeFlags.ChoiceIdentifier)) != 0)