24 references to Prefix
dotnet-svcutil-lib (24)
FrameworkFork\Microsoft.Xml\Xml\schema\AstTree.cs (5)
415
: base(axis.TypeOfAxis, inputaxis, axis.
Prefix
, axis.Name, axis.NodeType)
530
msw.WriteLine(" <Prefix> {0} </Prefix>", printaxis.
Prefix
);
714
if (axis.
Prefix
.Length != 0)
716
axis.Urn = nsmgr.LookupNamespace(axis.
Prefix
);
720
throw new XmlSchemaException(ResXml.Sch_UnresolvedPrefix, axis.
Prefix
);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (19)
61
if (root.
Prefix
.Length > 0)
91
result = new DescendantQuery(qyGrandInput, root.Name, root.
Prefix
, root.NodeType, false, input.AbbrAxis);
118
result = new XPathAncestorQuery(qyInput, root.Name, root.
Prefix
, root.NodeType, false);
122
result = new XPathAncestorQuery(qyInput, root.Name, root.
Prefix
, root.NodeType, true);
128
result = new CacheChildrenQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
132
result = new ChildrenQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
136
result = new ParentQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
141
result = new DescendantOverDescendantQuery(qyInput, false, root.Name, root.
Prefix
, root.NodeType, /*abbrAxis:*/false);
145
result = new DescendantQuery(qyInput, root.Name, root.
Prefix
, root.NodeType, false, /*abbrAxis:*/false);
156
result = new DescendantOverDescendantQuery(qyInput, true, root.Name, root.
Prefix
, root.NodeType, root.AbbrAxis);
160
result = new DescendantQuery(qyInput, root.Name, root.
Prefix
, root.NodeType, true, root.AbbrAxis);
169
result = new PrecedingQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
173
result = new FollowingQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
177
result = new FollSiblingQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
184
result = new PreSiblingQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
187
result = new AttributeQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
190
result = new XPathSelfQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);
193
if ((root.NodeType == XPathNodeType.All || root.NodeType == XPathNodeType.Element || root.NodeType == XPathNodeType.Attribute) && root.
Prefix
.Length == 0)
195
result = new NamespaceQuery(qyInput, root.Name, root.
Prefix
, root.NodeType);