13 references to SoapAttributeFlags
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapAttributes.cs (6)
86internal SoapAttributeFlags SoapFlags 90SoapAttributeFlags flags = 0; 91if (_soapElement != null) flags |= SoapAttributeFlags.Element; 92if (_soapAttribute != null) flags |= SoapAttributeFlags.Attribute; 93if (_soapEnum != null) flags |= SoapAttributeFlags.Enum; 94if (_soapType != null) flags |= SoapAttributeFlags.Type;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapReflectionImporter.cs (7)
217if ((a.SoapFlags & ~SoapAttributeFlags.Type) != 0) 623if ((a.SoapFlags & ~SoapAttributeFlags.Enum) != 0) 719SoapAttributeFlags flags = a.SoapFlags; 720if ((flags & SoapAttributeFlags.Attribute) == SoapAttributeFlags.Attribute) 725if ((flags & SoapAttributeFlags.Attribute) != flags) 739if ((flags & SoapAttributeFlags.Element) != flags)