﻿<?xml version="1.0" encoding="utf-8"?><Type Name="XsltContext" FullName="System.Xml.Xsl.XsltContext"><TypeSignature Maintainer="auto" Language="C#" Value="public abstract class XsltContext : System.Xml.XmlNamespaceManager" /><TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit XsltContext extends System.Xml.XmlNamespaceManager" /><AssemblyInfo><AssemblyName>System.Xml</AssemblyName><AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]</AssemblyPublicKey><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ThreadSafetyStatement>All the dynamic members are not designed to be thread safe.</ThreadSafetyStatement><Base><BaseTypeName>System.Xml.XmlNamespaceManager</BaseTypeName></Base><Interfaces></Interfaces><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information on using <see cref="T:System.Xml.Xsl.XsltContext" />, see article Q324899, "HOW TO: Implement and Use Custom Functions When You Execute XPath Queries in Visual Basic .NET" in the Microsoft Knowledge Base at http://support.microsoft.com.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Encapsulates the current execution context of the Extensible Stylesheet Language for Transformations (XSLT) processor allowing XML Path Language (XPath) to resolve functions, parameters, and namespaces within XPath expressions.</para></summary></Docs><Members><Member MemberName=".ctor"><MemberSignature Language="C#" Value="protected XsltContext ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" /><MemberType>Constructor</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue /><Parameters /><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltContext" /> class.</para></summary></Docs></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="protected XsltContext (System.Xml.NameTable table);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.Xml.NameTable table) cil managed" /><MemberType>Constructor</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue /><Parameters><Parameter Name="table" Type="System.Xml.NameTable" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltContext" /> class with the specified <see cref="T:System.Xml.NameTable" />.</para></summary><param name="table"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.NameTable" /> to use. </param></Docs></Member><Member MemberName="CompareDocument"><MemberSignature Language="C#" Value="public abstract int CompareDocument (string baseUri, string nextbaseUri);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 CompareDocument(string baseUri, string nextbaseUri) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Parameters><Parameter Name="baseUri" Type="System.String" /><Parameter Name="nextbaseUri" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method supports the XSLT document() function which specifies that nodes selected across multiple documents are always returned in the same order. </para><block subset="none" type="note"><para>The order is implementation-specific.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>When overridden in a derived class, compares the base Uniform Resource Identifiers (URIs) of two documents based upon the order the documents were loaded by the XSLT processor (that is, the <see cref="T:System.Xml.Xsl.XslTransform" /> class).</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An integer value describing the relative order of the two base URIs: -1 if <paramref name="baseUri" /> occurs before <paramref name="nextbaseUri" />; 0 if the two base URIs are identical; and 1 if <paramref name="baseUri" /> occurs after <paramref name="nextbaseUri" />.</para></returns><param name="baseUri"><attribution license="cc4" from="Microsoft" modified="false" />The base URI of the first document to compare. </param><param name="nextbaseUri"><attribution license="cc4" from="Microsoft" modified="false" />The base URI of the second document to compare. </param></Docs></Member><Member MemberName="PreserveWhitespace"><MemberSignature Language="C#" Value="public abstract bool PreserveWhitespace (System.Xml.XPath.XPathNavigator node);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool PreserveWhitespace(class System.Xml.XPath.XPathNavigator node) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="node" Type="System.Xml.XPath.XPathNavigator" /></Parameters><Docs><remarks>The return value comes from the nearest ancestor's preserve-whitespace or strip-whitespace attribute value.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>When overridden in a derived class, evaluates whether to preserve white space nodes or strip them for the given context.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>Returns true if the white space is to be preserved or false if the white space is to be stripped.</para></returns><param name="node"><attribution license="cc4" from="Microsoft" modified="false" />The white space node that is to be preserved or stripped in the current context. </param></Docs></Member><Member MemberName="ResolveFunction"><MemberSignature Language="C#" Value="public abstract System.Xml.Xsl.IXsltContextFunction ResolveFunction (string prefix, string name, System.Xml.XPath.XPathResultType[] ArgTypes);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Xml.Xsl.IXsltContextFunction ResolveFunction(string prefix, string name, valuetype System.Xml.XPath.XPathResultType[] ArgTypes) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.Xsl.IXsltContextFunction</ReturnType></ReturnValue><Parameters><Parameter Name="prefix" Type="System.String" /><Parameter Name="name" Type="System.String" /><Parameter Name="ArgTypes" Type="System.Xml.XPath.XPathResultType[]" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>When overridden in a derived class, resolves a function reference and returns an <see cref="T:System.Xml.Xsl.IXsltContextFunction" /> representing the function. The <see cref="T:System.Xml.Xsl.IXsltContextFunction" /> is used at execution time to get the return value of the function.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.Xml.Xsl.IXsltContextFunction" /> representing the function.</para></returns><param name="prefix"><attribution license="cc4" from="Microsoft" modified="false" />The prefix of the function as it appears in the XPath expression. </param><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of the function. </param><param name="ArgTypes"><attribution license="cc4" from="Microsoft" modified="false" />An array of argument types for the function being resolved. This allows you to select between methods with the same name (for example, overloaded methods). </param></Docs></Member><Member MemberName="ResolveVariable"><MemberSignature Language="C#" Value="public abstract System.Xml.Xsl.IXsltContextVariable ResolveVariable (string prefix, string name);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Xml.Xsl.IXsltContextVariable ResolveVariable(string prefix, string name) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.Xsl.IXsltContextVariable</ReturnType></ReturnValue><Parameters><Parameter Name="prefix" Type="System.String" /><Parameter Name="name" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Xml.Xsl.IXsltContextVariable" /> is used at execution time to get the value of the variable.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>When overridden in a derived class, resolves a variable reference and returns an <see cref="T:System.Xml.Xsl.IXsltContextVariable" /> representing the variable.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.Xml.Xsl.IXsltContextVariable" /> representing the variable at runtime.</para></returns><param name="prefix"><attribution license="cc4" from="Microsoft" modified="false" />The prefix of the variable as it appears in the XPath expression. </param><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of the variable. </param></Docs></Member><Member MemberName="Whitespace"><MemberSignature Language="C#" Value="public abstract bool Whitespace { get; }" /><MemberSignature Language="ILAsm" Value=".property instance bool Whitespace" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>True if preserve; othewise False.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>When overridden in a derived class, gets a value indicating whether to include white space nodes in the output.</para></summary></Docs></Member></Members></Type>