6 writes to _state
PresentationFramework (6)
MS\Internal\Globalization\BamlTreeNode.cs (6)
277
_state
|= BamlTreeNodeState.ContentFormatted;
281
_state
&= (~BamlTreeNodeState.ContentFormatted);
300
_state
|= BamlTreeNodeState.NodeVisited;
304
_state
&= (~BamlTreeNodeState.NodeVisited);
323
_state
|= BamlTreeNodeState.Unidentifiable;
327
_state
&= (~BamlTreeNodeState.Unidentifiable);
3 references to _state
PresentationFramework (3)
MS\Internal\Globalization\BamlTreeNode.cs (3)
271
return (
_state
& BamlTreeNodeState.ContentFormatted) != 0;
294
return (
_state
& BamlTreeNodeState.NodeVisited) != 0;
317
return (
_state
& BamlTreeNodeState.Unidentifiable) != 0;