7 writes to currentElementProperties
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\Core\HtmlUtf8RawTextWriter.cs (7)
134currentElementProperties = (ElementProperties)elementPropertySearch.FindCaseInsensitiveString(localName); 143currentElementProperties = ElementProperties.HAS_NS; 188currentElementProperties = (ElementProperties)elementScope.Pop(); 213currentElementProperties = (ElementProperties)elementScope.Pop(); 477currentElementProperties = ElementProperties.DEFAULT; 864base.currentElementProperties = (ElementProperties)elementPropertySearch.FindCaseInsensitiveString(localName); 876base.currentElementProperties = ElementProperties.HAS_NS | ElementProperties.BLOCK_WS;
13 references to currentElementProperties
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\Core\HtmlUtf8RawTextWriter.cs (13)
127elementScope.Push((byte)currentElementProperties); 156if ((currentElementProperties & ElementProperties.HEAD) != 0) 174if ((currentElementProperties & ElementProperties.EMPTY) == 0) 199if ((currentElementProperties & ElementProperties.EMPTY) == 0) 328if ((currentElementProperties & (ElementProperties.BOOL_PARENT | ElementProperties.URI_PARENT | ElementProperties.NAME_PARENT)) != 0) 331(AttributeProperties)currentElementProperties; 510if ((currentElementProperties & ElementProperties.NO_ENTITIES) != 0) 539else if ((currentElementProperties & ElementProperties.HAS_NS) != 0) 858base.elementScope.Push((byte)base.currentElementProperties); 866if (_endBlockPos == base.bufPos && (base.currentElementProperties & ElementProperties.BLOCK_WS) != 0) 902if ((currentElementProperties & ElementProperties.HEAD) != 0) 908else if ((base.currentElementProperties & ElementProperties.BLOCK_WS) != 0) 923isBlockWs = (base.currentElementProperties & ElementProperties.BLOCK_WS) != 0;