3 instantiations of XmlQueryOutput
System.Private.Xml (3)
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (3)
147
_output = new
XmlQueryOutput
(this, seqWrt);
980
output = _output = new
XmlQueryOutput
(this, new XmlCachedSequenceWriter());
1006
output = _output = new
XmlQueryOutput
(this, new XmlEventCache(baseUri, true));
51 references to XmlQueryOutput
System.Private.Xml (51)
System\Xml\Xsl\IlGen\GenerateHelper.cs (43)
337
public static readonly MethodInfo StartElemLitName = typeof(
XmlQueryOutput
).GetMethod("WriteStartElement", new[] { typeof(string), typeof(string), typeof(string) })!;
338
public static readonly MethodInfo StartElemLocName = typeof(
XmlQueryOutput
).GetMethod("WriteStartElementLocalName", new[] { typeof(string) })!;
339
public static readonly MethodInfo EndElemStackName = typeof(
XmlQueryOutput
).GetMethod("WriteEndElement")!;
340
public static readonly MethodInfo StartAttrLitName = typeof(
XmlQueryOutput
).GetMethod("WriteStartAttribute", new[] { typeof(string), typeof(string), typeof(string) })!;
341
public static readonly MethodInfo StartAttrLocName = typeof(
XmlQueryOutput
).GetMethod("WriteStartAttributeLocalName", new[] { typeof(string) })!;
342
public static readonly MethodInfo EndAttr = typeof(
XmlQueryOutput
).GetMethod("WriteEndAttribute")!;
343
public static readonly MethodInfo Text = typeof(
XmlQueryOutput
).GetMethod("WriteString")!;
344
public static readonly MethodInfo NoEntText = typeof(
XmlQueryOutput
).GetMethod("WriteRaw", new[] { typeof(string) })!;
346
public static readonly MethodInfo StartTree = typeof(
XmlQueryOutput
).GetMethod("StartTree")!;
347
public static readonly MethodInfo EndTree = typeof(
XmlQueryOutput
).GetMethod("EndTree")!;
349
public static readonly MethodInfo StartElemLitNameUn = typeof(
XmlQueryOutput
).GetMethod("WriteStartElementUnchecked", new[] { typeof(string), typeof(string), typeof(string) })!;
350
public static readonly MethodInfo StartElemLocNameUn = typeof(
XmlQueryOutput
).GetMethod("WriteStartElementUnchecked", new[] { typeof(string) })!;
351
public static readonly MethodInfo StartContentUn = typeof(
XmlQueryOutput
).GetMethod("StartElementContentUnchecked")!;
352
public static readonly MethodInfo EndElemLitNameUn = typeof(
XmlQueryOutput
).GetMethod("WriteEndElementUnchecked", new[] { typeof(string), typeof(string), typeof(string) })!;
353
public static readonly MethodInfo EndElemLocNameUn = typeof(
XmlQueryOutput
).GetMethod("WriteEndElementUnchecked", new[] { typeof(string) })!;
354
public static readonly MethodInfo StartAttrLitNameUn = typeof(
XmlQueryOutput
).GetMethod("WriteStartAttributeUnchecked", new[] { typeof(string), typeof(string), typeof(string) })!;
355
public static readonly MethodInfo StartAttrLocNameUn = typeof(
XmlQueryOutput
).GetMethod("WriteStartAttributeUnchecked", new[] { typeof(string) })!;
356
public static readonly MethodInfo EndAttrUn = typeof(
XmlQueryOutput
).GetMethod("WriteEndAttributeUnchecked")!;
357
public static readonly MethodInfo NamespaceDeclUn = typeof(
XmlQueryOutput
).GetMethod("WriteNamespaceDeclarationUnchecked")!;
358
public static readonly MethodInfo TextUn = typeof(
XmlQueryOutput
).GetMethod("WriteStringUnchecked")!;
359
public static readonly MethodInfo NoEntTextUn = typeof(
XmlQueryOutput
).GetMethod("WriteRawUnchecked")!;
361
public static readonly MethodInfo StartRoot = typeof(
XmlQueryOutput
).GetMethod("WriteStartRoot")!;
362
public static readonly MethodInfo EndRoot = typeof(
XmlQueryOutput
).GetMethod("WriteEndRoot")!;
363
public static readonly MethodInfo StartElemCopyName = typeof(
XmlQueryOutput
).GetMethod("WriteStartElementComputed", new[] { typeof(XPathNavigator) })!;
364
public static readonly MethodInfo StartElemMapName = typeof(
XmlQueryOutput
).GetMethod("WriteStartElementComputed", new[] { typeof(string), typeof(int) })!;
365
public static readonly MethodInfo StartElemNmspName = typeof(
XmlQueryOutput
).GetMethod("WriteStartElementComputed", new[] { typeof(string), typeof(string) })!;
366
public static readonly MethodInfo StartElemQName = typeof(
XmlQueryOutput
).GetMethod("WriteStartElementComputed", new[] { typeof(XmlQualifiedName) })!;
367
public static readonly MethodInfo StartAttrCopyName = typeof(
XmlQueryOutput
).GetMethod("WriteStartAttributeComputed", new[] { typeof(XPathNavigator) })!;
368
public static readonly MethodInfo StartAttrMapName = typeof(
XmlQueryOutput
).GetMethod("WriteStartAttributeComputed", new[] { typeof(string), typeof(int) })!;
369
public static readonly MethodInfo StartAttrNmspName = typeof(
XmlQueryOutput
).GetMethod("WriteStartAttributeComputed", new[] { typeof(string), typeof(string) })!;
370
public static readonly MethodInfo StartAttrQName = typeof(
XmlQueryOutput
).GetMethod("WriteStartAttributeComputed", new[] { typeof(XmlQualifiedName) })!;
371
public static readonly MethodInfo NamespaceDecl = typeof(
XmlQueryOutput
).GetMethod("WriteNamespaceDeclaration")!;
372
public static readonly MethodInfo StartComment = typeof(
XmlQueryOutput
).GetMethod("WriteStartComment")!;
373
public static readonly MethodInfo CommentText = typeof(
XmlQueryOutput
).GetMethod("WriteCommentString")!;
374
public static readonly MethodInfo EndComment = typeof(
XmlQueryOutput
).GetMethod("WriteEndComment")!;
375
public static readonly MethodInfo StartPI = typeof(
XmlQueryOutput
).GetMethod("WriteStartProcessingInstruction")!;
376
public static readonly MethodInfo PIText = typeof(
XmlQueryOutput
).GetMethod("WriteProcessingInstructionString")!;
377
public static readonly MethodInfo EndPI = typeof(
XmlQueryOutput
).GetMethod("WriteEndProcessingInstruction")!;
378
public static readonly MethodInfo WriteItem = typeof(
XmlQueryOutput
).GetMethod("WriteItem")!;
379
public static readonly MethodInfo CopyOf = typeof(
XmlQueryOutput
).GetMethod("XsltCopyOf")!;
380
public static readonly MethodInfo StartCopy = typeof(
XmlQueryOutput
).GetMethod("StartCopy")!;
381
public static readonly MethodInfo EndCopy = typeof(
XmlQueryOutput
).GetMethod("EndCopy")!;
1130
_locXOut = DeclareLocal("$$$xwrtChk", typeof(
XmlQueryOutput
));
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (8)
59
private
XmlQueryOutput
_output;
60
private readonly Stack<
XmlQueryOutput
> _stkOutput;
146
_stkOutput = new Stack<
XmlQueryOutput
>(16);
965
public
XmlQueryOutput
Output
974
public void StartSequenceConstruction(out
XmlQueryOutput
output)
987
public IList<XPathItem> EndSequenceConstruction(out
XmlQueryOutput
output)
1000
public void StartRtfConstruction(string baseUri, out
XmlQueryOutput
output)
1012
public XPathNavigator EndRtfConstruction(out
XmlQueryOutput
output)