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