2 instantiations of InternalWhitespaceRule
System.Private.Xml (2)
System\Xml\Xsl\Runtime\WhitespaceRuleLookup.cs (2)
45
ruleInternal = new
InternalWhitespaceRule
(rule.LocalName, rule.NamespaceName, rule.PreserveSpace, -i);
60
_ruleTemp = new
InternalWhitespaceRule
();
10 references to InternalWhitespaceRule
System.Private.Xml (10)
System\Xml\Xsl\Runtime\WhitespaceRuleLookup.cs (10)
23
private readonly
InternalWhitespaceRule
? _ruleTemp;
38
InternalWhitespaceRule
ruleInternal;
73
foreach (
InternalWhitespaceRule
rule in _qnames.Values)
76
foreach (
InternalWhitespaceRule
rule in _wildcards)
88
InternalWhitespaceRule
? qnameRule, wildcardRule;
97
qnameRule = _qnames[_ruleTemp] as
InternalWhitespaceRule
;
101
wildcardRule = _wildcards[pos] as
InternalWhitespaceRule
;
173
Debug.Assert(obj is
InternalWhitespaceRule
);
174
InternalWhitespaceRule
? that = obj as
InternalWhitespaceRule
;