3 instantiations of XmlQueryOutput
System.Data.SqlXml (3)
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (3)
151
this.output = new
XmlQueryOutput
(this, seqWrt);
919
output = this.output = new
XmlQueryOutput
(this, new XmlCachedSequenceWriter());
943
output = this.output = new
XmlQueryOutput
(this, new XmlEventCache(baseUri, true));
51 references to XmlQueryOutput
System.Data.SqlXml (51)
System\Xml\Xsl\IlGen\GenerateHelper.cs (43)
292
public static readonly MethodInfo StartElemLitName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartElement", typeof(string), typeof(string), typeof(string));
293
public static readonly MethodInfo StartElemLocName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartElementLocalName", typeof(string));
294
public static readonly MethodInfo EndElemStackName = GetMethod(typeof(
XmlQueryOutput
), "WriteEndElement");
295
public static readonly MethodInfo StartAttrLitName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartAttribute", typeof(string), typeof(string), typeof(string));
296
public static readonly MethodInfo StartAttrLocName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartAttributeLocalName", typeof(string));
297
public static readonly MethodInfo EndAttr = GetMethod(typeof(
XmlQueryOutput
), "WriteEndAttribute");
298
public static readonly MethodInfo Text = GetMethod(typeof(
XmlQueryOutput
), "WriteString");
299
public static readonly MethodInfo NoEntText = GetMethod(typeof(
XmlQueryOutput
), "WriteRaw", typeof(string));
301
public static readonly MethodInfo StartTree = GetMethod(typeof(
XmlQueryOutput
), "StartTree");
302
public static readonly MethodInfo EndTree = GetMethod(typeof(
XmlQueryOutput
), "EndTree");
304
public static readonly MethodInfo StartElemLitNameUn = GetMethod(typeof(
XmlQueryOutput
), "WriteStartElementUnchecked", typeof(string), typeof(string), typeof(string));
305
public static readonly MethodInfo StartElemLocNameUn = GetMethod(typeof(
XmlQueryOutput
), "WriteStartElementUnchecked", typeof(string));
306
public static readonly MethodInfo StartContentUn = GetMethod(typeof(
XmlQueryOutput
), "StartElementContentUnchecked");
307
public static readonly MethodInfo EndElemLitNameUn = GetMethod(typeof(
XmlQueryOutput
), "WriteEndElementUnchecked", typeof(string), typeof(string), typeof(string));
308
public static readonly MethodInfo EndElemLocNameUn = GetMethod(typeof(
XmlQueryOutput
), "WriteEndElementUnchecked", typeof(string));
309
public static readonly MethodInfo StartAttrLitNameUn = GetMethod(typeof(
XmlQueryOutput
), "WriteStartAttributeUnchecked", typeof(string), typeof(string), typeof(string));
310
public static readonly MethodInfo StartAttrLocNameUn = GetMethod(typeof(
XmlQueryOutput
), "WriteStartAttributeUnchecked", typeof(string));
311
public static readonly MethodInfo EndAttrUn = GetMethod(typeof(
XmlQueryOutput
), "WriteEndAttributeUnchecked");
312
public static readonly MethodInfo NamespaceDeclUn = GetMethod(typeof(
XmlQueryOutput
), "WriteNamespaceDeclarationUnchecked");
313
public static readonly MethodInfo TextUn = GetMethod(typeof(
XmlQueryOutput
), "WriteStringUnchecked");
314
public static readonly MethodInfo NoEntTextUn = GetMethod(typeof(
XmlQueryOutput
), "WriteRawUnchecked");
316
public static readonly MethodInfo StartRoot = GetMethod(typeof(
XmlQueryOutput
), "WriteStartRoot");
317
public static readonly MethodInfo EndRoot = GetMethod(typeof(
XmlQueryOutput
), "WriteEndRoot");
318
public static readonly MethodInfo StartElemCopyName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartElementComputed", typeof(XPathNavigator));
319
public static readonly MethodInfo StartElemMapName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartElementComputed", typeof(string), typeof(int));
320
public static readonly MethodInfo StartElemNmspName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartElementComputed", typeof(string), typeof(string));
321
public static readonly MethodInfo StartElemQName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartElementComputed", typeof(XmlQualifiedName));
322
public static readonly MethodInfo StartAttrCopyName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartAttributeComputed", typeof(XPathNavigator));
323
public static readonly MethodInfo StartAttrMapName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartAttributeComputed", typeof(string), typeof(int));
324
public static readonly MethodInfo StartAttrNmspName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartAttributeComputed", typeof(string), typeof(string));
325
public static readonly MethodInfo StartAttrQName = GetMethod(typeof(
XmlQueryOutput
), "WriteStartAttributeComputed", typeof(XmlQualifiedName));
326
public static readonly MethodInfo NamespaceDecl = GetMethod(typeof(
XmlQueryOutput
), "WriteNamespaceDeclaration");
327
public static readonly MethodInfo StartComment = GetMethod(typeof(
XmlQueryOutput
), "WriteStartComment");
328
public static readonly MethodInfo CommentText = GetMethod(typeof(
XmlQueryOutput
), "WriteCommentString");
329
public static readonly MethodInfo EndComment = GetMethod(typeof(
XmlQueryOutput
), "WriteEndComment");
330
public static readonly MethodInfo StartPI = GetMethod(typeof(
XmlQueryOutput
), "WriteStartProcessingInstruction");
331
public static readonly MethodInfo PIText = GetMethod(typeof(
XmlQueryOutput
), "WriteProcessingInstructionString");
332
public static readonly MethodInfo EndPI = GetMethod(typeof(
XmlQueryOutput
), "WriteEndProcessingInstruction");
333
public static readonly MethodInfo WriteItem = GetMethod(typeof(
XmlQueryOutput
), "WriteItem");
334
public static readonly MethodInfo CopyOf = GetMethod(typeof(
XmlQueryOutput
), "XsltCopyOf");
335
public static readonly MethodInfo StartCopy = GetMethod(typeof(
XmlQueryOutput
), "StartCopy");
336
public static readonly MethodInfo EndCopy = GetMethod(typeof(
XmlQueryOutput
), "EndCopy");
1089
this.locXOut = DeclareLocal("$$$xwrtChk", typeof(
XmlQueryOutput
));
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (8)
67
private
XmlQueryOutput
output;
68
private Stack<
XmlQueryOutput
> stkOutput;
150
this.stkOutput = new Stack<
XmlQueryOutput
>(16);
906
public
XmlQueryOutput
Output {
914
public void StartSequenceConstruction(out
XmlQueryOutput
output) {
926
public IList<XPathItem> EndSequenceConstruction(out
XmlQueryOutput
output) {
938
public void StartRtfConstruction(string baseUri, out
XmlQueryOutput
output) {
949
public XPathNavigator EndRtfConstruction(out
XmlQueryOutput
output) {