6 writes to _state
PresentationFramework (6)
MS\Internal\Globalization\BamlTreeNode.cs (6)
279
_state
|= BamlTreeNodeState.ContentFormatted;
283
_state
&= (~BamlTreeNodeState.ContentFormatted);
302
_state
|= BamlTreeNodeState.NodeVisited;
306
_state
&= (~BamlTreeNodeState.NodeVisited);
325
_state
|= BamlTreeNodeState.Unidentifiable;
329
_state
&= (~BamlTreeNodeState.Unidentifiable);
3 references to _state
PresentationFramework (3)
MS\Internal\Globalization\BamlTreeNode.cs (3)
273
return (
_state
& BamlTreeNodeState.ContentFormatted) != 0;
296
return (
_state
& BamlTreeNodeState.NodeVisited) != 0;
319
return (
_state
& BamlTreeNodeState.Unidentifiable) != 0;