6 writes to _state
PresentationFramework (6)
src\Framework\MS\Internal\Globalization\BamlTreeNode.cs (6)
282
_state
|= BamlTreeNodeState.ContentFormatted;
286
_state
&= (~BamlTreeNodeState.ContentFormatted);
305
_state
|= BamlTreeNodeState.NodeVisited;
309
_state
&= (~BamlTreeNodeState.NodeVisited);
328
_state
|= BamlTreeNodeState.Unidentifiable;
332
_state
&= (~BamlTreeNodeState.Unidentifiable);
3 references to _state
PresentationFramework (3)
src\Framework\MS\Internal\Globalization\BamlTreeNode.cs (3)
276
return (
_state
& BamlTreeNodeState.ContentFormatted) != 0;
299
return (
_state
& BamlTreeNodeState.NodeVisited) != 0;
322
return (
_state
& BamlTreeNodeState.Unidentifiable) != 0;