13 references to SoapAttributeFlags
System.Xml (13)
System\Xml\Serialization\SoapAttributes.cs (6)
76internal SoapAttributeFlags SoapFlags { 78SoapAttributeFlags flags = 0; 79if (soapElement != null) flags |= SoapAttributeFlags.Element; 80if (soapAttribute != null) flags |= SoapAttributeFlags.Attribute; 81if (soapEnum != null) flags |= SoapAttributeFlags.Enum; 82if (soapType != null) flags |= SoapAttributeFlags.Type;
System\Xml\Serialization\SoapReflectionImporter.cs (7)
199if ((a.SoapFlags & ~SoapAttributeFlags.Type) != 0) 555if ((a.SoapFlags & ~SoapAttributeFlags.Enum) != 0) 640SoapAttributeFlags flags = a.SoapFlags; 641if ((flags & SoapAttributeFlags.Attribute) == SoapAttributeFlags.Attribute) { 645if ((flags & SoapAttributeFlags.Attribute) != flags) 658if ((flags & SoapAttributeFlags.Element) != flags)