58 references to AttributeProperties
dotnet-svcutil-lib (58)
FrameworkFork\Microsoft.Xml\Xml\Core\HtmlEncodedRawTextWriter.cs (16)
26private AttributeProperties _currentAttributeProperties; 331_currentAttributeProperties = (AttributeProperties)attributePropertySearch.FindCaseInsensitiveString(localName) & 332(AttributeProperties)currentElementProperties; 334if ((_currentAttributeProperties & AttributeProperties.BOOLEAN) != 0) 342_currentAttributeProperties = AttributeProperties.DEFAULT; 351_currentAttributeProperties = AttributeProperties.DEFAULT; 360if ((_currentAttributeProperties & AttributeProperties.BOOLEAN) != 0) 465Debug.Assert((int)ElementProperties.URI_PARENT == (int)AttributeProperties.URI); 466Debug.Assert((int)ElementProperties.BOOL_PARENT == (int)AttributeProperties.BOOLEAN); 467Debug.Assert((int)ElementProperties.NAME_PARENT == (int)AttributeProperties.NAME); 523if ((_currentAttributeProperties & (AttributeProperties.BOOLEAN | AttributeProperties.URI | AttributeProperties.NAME)) != 0) 525if ((_currentAttributeProperties & AttributeProperties.BOOLEAN) != 0) 531if ((_currentAttributeProperties & (AttributeProperties.URI | AttributeProperties.NAME)) != 0 && !_doNotEscapeUriAttributes)
FrameworkFork\Microsoft.Xml\Xml\Core\HtmlUtf8RawTextWriter.cs (16)
26private AttributeProperties _currentAttributeProperties; 330_currentAttributeProperties = (AttributeProperties)attributePropertySearch.FindCaseInsensitiveString(localName) & 331(AttributeProperties)currentElementProperties; 333if ((_currentAttributeProperties & AttributeProperties.BOOLEAN) != 0) 341_currentAttributeProperties = AttributeProperties.DEFAULT; 350_currentAttributeProperties = AttributeProperties.DEFAULT; 359if ((_currentAttributeProperties & AttributeProperties.BOOLEAN) != 0) 464Debug.Assert((int)ElementProperties.URI_PARENT == (int)AttributeProperties.URI); 465Debug.Assert((int)ElementProperties.BOOL_PARENT == (int)AttributeProperties.BOOLEAN); 466Debug.Assert((int)ElementProperties.NAME_PARENT == (int)AttributeProperties.NAME); 522if ((_currentAttributeProperties & (AttributeProperties.BOOLEAN | AttributeProperties.URI | AttributeProperties.NAME)) != 0) 524if ((_currentAttributeProperties & AttributeProperties.BOOLEAN) != 0) 530if ((_currentAttributeProperties & (AttributeProperties.URI | AttributeProperties.NAME)) != 0 && !_doNotEscapeUriAttributes)
FrameworkFork\Microsoft.Xml\Xml\Core\util\TernaryTreeGenerator.cs (26)
128new HtmlProps("action", (byte)AttributeProperties.URI), 129new HtmlProps("checked", (byte)AttributeProperties.BOOLEAN), 130new HtmlProps("cite", (byte)AttributeProperties.URI), 131new HtmlProps("classid", (byte)AttributeProperties.URI), 132new HtmlProps("codebase", (byte)AttributeProperties.URI), 133new HtmlProps("compact", (byte)AttributeProperties.BOOLEAN), 134new HtmlProps("data", (byte)AttributeProperties.URI), 135new HtmlProps("datasrc", (byte)AttributeProperties.URI), 136new HtmlProps("declare", (byte)AttributeProperties.BOOLEAN), 137new HtmlProps("defer", (byte)AttributeProperties.BOOLEAN), 138new HtmlProps("disabled", (byte)AttributeProperties.BOOLEAN), 139new HtmlProps("for", (byte)AttributeProperties.URI), 140new HtmlProps("href", (byte)AttributeProperties.URI), 141new HtmlProps("ismap", (byte)AttributeProperties.BOOLEAN), 142new HtmlProps("longdesc", (byte)AttributeProperties.URI), 143new HtmlProps("multiple", (byte)AttributeProperties.BOOLEAN), 144new HtmlProps("name", (byte)AttributeProperties.URI), 145new HtmlProps("nohref", (byte)AttributeProperties.BOOLEAN), 146new HtmlProps("noresize", (byte)AttributeProperties.BOOLEAN), 147new HtmlProps("noshade", (byte)AttributeProperties.BOOLEAN), 148new HtmlProps("nowrap", (byte)AttributeProperties.BOOLEAN), 149new HtmlProps("profile", (byte)AttributeProperties.URI), 150new HtmlProps("readonly", (byte)AttributeProperties.BOOLEAN), 151new HtmlProps("selected", (byte)AttributeProperties.BOOLEAN), 152new HtmlProps("src", (byte)AttributeProperties.URI), 153new HtmlProps("usemap", (byte)AttributeProperties.URI),