14 references to SoapAttributeFlags
System.Private.Xml (14)
System\Xml\Serialization\SoapAttributes.cs (7)
71internal SoapAttributeFlags SoapFlags 75SoapAttributeFlags flags = 0; 76if (_soapElement != null) flags |= SoapAttributeFlags.Element; 77if (_soapAttribute != null) flags |= SoapAttributeFlags.Attribute; 78if (_soapEnum != null) flags |= SoapAttributeFlags.Enum; 79if (_soapType != null) flags |= SoapAttributeFlags.Type; 84internal SoapAttributeFlags GetSoapFlags()
System\Xml\Serialization\SoapReflectionImporter.cs (7)
184if ((a.GetSoapFlags() & ~SoapAttributeFlags.Type) != 0) 594if ((a.GetSoapFlags() & ~SoapAttributeFlags.Enum) != 0) 693SoapAttributeFlags flags = a.GetSoapFlags(); 694if ((flags & SoapAttributeFlags.Attribute) == SoapAttributeFlags.Attribute) 699if ((flags & SoapAttributeFlags.Attribute) != flags) 713if ((flags & SoapAttributeFlags.Element) != flags)