27 references to Node
System.Private.Xml (27)
System\Xml\Schema\XmlValueConverter.cs (2)
259
case XmlTypeCode.
Node
:
432
if (_typeCode == XmlTypeCode.
Node
) return "node";
System\Xml\Xsl\IlGen\XmlIlVisitor.cs (1)
3204
else if ((object)typBase == (object)TypeFactory.Node) codeBase = XmlTypeCode.
Node
;
System\Xml\Xsl\Runtime\XmlQueryContext.cs (1)
291
case XmlTypeCode.
Node
:
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (4)
498
case XmlTypeCode.
Node
:
592
case XmlTypeCode.
Node
:
650
case XmlTypeCode.
Node
:
757
case XmlTypeCode.
Node
: return item.IsNode;
System\Xml\Xsl\XmlQueryType.cs (8)
533
if (this.TypeCode == XmlTypeCode.
Node
)
737
/* Document */ XmlTypeCode.
Node
,
738
/* Element */ XmlTypeCode.
Node
,
739
/* Attribute */ XmlTypeCode.
Node
,
740
/* Namespace */ XmlTypeCode.
Node
,
741
/* ProcessingInstruction */ XmlTypeCode.
Node
,
742
/* Comment */ XmlTypeCode.
Node
,
743
/* Text */ XmlTypeCode.
Node
,
System\Xml\Xsl\XmlQueryTypeFactory.cs (6)
188
public static readonly XmlQueryType Node = TF.Type(XmlTypeCode.
Node
, false);
312
/* XPathNodeType.All */ XmlTypeCode.
Node
,
372
case XmlTypeCode.
Node
:
414
NodeNotRtf = new ItemType(XmlTypeCode.
Node
, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.AnyType, false, false, true);
518
XmlTypeCode.
Node
=> XmlNodeKindFlags.Any,
771
_code = XmlTypeCode.
Node
;
System\Xml\Xsl\XPath\XPathBuilder.cs (2)
779
public static readonly XmlTypeCode[] argNodeSet = { XmlTypeCode.
Node
};
1049
if (argTypes![i] == XmlTypeCode.
Node
&& XPathQilFactory.CannotBeNodeSet(args[i]))
System\Xml\Xsl\XPath\XPathQilFactory.cs (1)
180
case XmlTypeCode.
Node
: return EnsureNodeSet(n);
System\Xml\Xsl\Xslt\QilGeneratorEnv.cs (2)
249
case XmlTypeCode.
Node
: args[i] = xmlTypeFormalArg.IsSingleton ? _f.ConvertToNode(args[i]) : _f.ConvertToNodeSet(args[i]); break;
296
private static readonly XmlTypeCode[] s_argFnDocument = { XmlTypeCode.Item, XmlTypeCode.
Node
};