6 writes to _state
PresentationFramework (6)
MS\Internal\Globalization\BamlTreeNode.cs (6)
276
_state
|= BamlTreeNodeState.ContentFormatted;
280
_state
&= (~BamlTreeNodeState.ContentFormatted);
299
_state
|= BamlTreeNodeState.NodeVisited;
303
_state
&= (~BamlTreeNodeState.NodeVisited);
322
_state
|= BamlTreeNodeState.Unidentifiable;
326
_state
&= (~BamlTreeNodeState.Unidentifiable);
3 references to _state
PresentationFramework (3)
MS\Internal\Globalization\BamlTreeNode.cs (3)
270
return (
_state
& BamlTreeNodeState.ContentFormatted) != 0;
293
return (
_state
& BamlTreeNodeState.NodeVisited) != 0;
316
return (
_state
& BamlTreeNodeState.Unidentifiable) != 0;