6 writes to _state
PresentationFramework (6)
MS\Internal\Globalization\BamlTreeNode.cs (6)
275
_state
|= BamlTreeNodeState.ContentFormatted;
279
_state
&= (~BamlTreeNodeState.ContentFormatted);
298
_state
|= BamlTreeNodeState.NodeVisited;
302
_state
&= (~BamlTreeNodeState.NodeVisited);
321
_state
|= BamlTreeNodeState.Unidentifiable;
325
_state
&= (~BamlTreeNodeState.Unidentifiable);
3 references to _state
PresentationFramework (3)
MS\Internal\Globalization\BamlTreeNode.cs (3)
269
return (
_state
& BamlTreeNodeState.ContentFormatted) != 0;
292
return (
_state
& BamlTreeNodeState.NodeVisited) != 0;
315
return (
_state
& BamlTreeNodeState.Unidentifiable) != 0;