23 references to Prefix
System.Private.Xml (23)
System\Xml\Schema\Asttree.cs (4)
419
: base(axis.TypeOfAxis, inputaxis, axis.
Prefix
, axis.Name, axis.NodeType)
695
if (axis.
Prefix
.Length != 0)
697
axis.Urn = nsmgr.LookupNamespace(axis.
Prefix
);
701
throw new XmlSchemaException(SR.Sch_UnresolvedPrefix, axis.
Prefix
);
System\Xml\XPath\Internal\QueryBuilder.cs (19)
59
if (root.
Prefix
.Length > 0)
89
result = new DescendantQuery(qyGrandInput, root.Name, root.
Prefix
, root.NodeType, false, input.AbbrAxis);
116
result = new XPathAncestorQuery(qyInput, root.Name, root.
Prefix
, root.NodeType, false);
120
result = new XPathAncestorQuery(qyInput, root.Name, root.
Prefix
, root.NodeType, true);
126
result = new CacheChildrenQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
130
result = new ChildrenQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
134
result = new ParentQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
139
result = new DescendantOverDescendantQuery(qyInput, false, root.Name, root.
Prefix
, root.NodeType, /*abbrAxis:*/false);
143
result = new DescendantQuery(qyInput, root.Name, root.
Prefix
, root.NodeType, false, /*abbrAxis:*/false);
154
result = new DescendantOverDescendantQuery(qyInput, true, root.Name, root.
Prefix
, root.NodeType, root.AbbrAxis);
158
result = new DescendantQuery(qyInput, root.Name, root.
Prefix
, root.NodeType, true, root.AbbrAxis);
167
result = new PrecedingQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
171
result = new FollowingQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
175
result = new FollSiblingQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
182
result = new PreSiblingQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
185
result = new AttributeQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
188
result = new XPathSelfQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
191
if ((root.NodeType == XPathNodeType.All || root.NodeType == XPathNodeType.Element || root.NodeType == XPathNodeType.Attribute) && root.
Prefix
.Length == 0)
193
result = new NamespaceQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);