XQuery.Compile MethodXQuery.Compile MethodXQuery::Compile Method

Compiles the specified XQuery program and returns an XQueryXQueryXQuery object that represents the XQuery program.

Overload List

 NameDescription
Public methodstaticCompile (FileStream, XQuerySettings)Compile (FileStream, XQuerySettings)Compile (FileStream^, XQuerySettings^) Loads and compiles the specified XQuery program and returns an XQueryXQueryXQuery object that represents the XQuery program. The specified static context settings are used.
Public methodstaticCompile (Stream, XQuerySettings)Compile (Stream, XQuerySettings)Compile (Stream^, XQuerySettings^) Loads and compiles the specified XQuery program and returns an XQueryXQueryXQuery object that represents the XQuery program. The specified static context settings are used.
Public methodstaticCompile (string)Compile (String)Compile (String^) Compiles the specified XQuery program and returns an XQueryXQueryXQuery object that represents the XQuery program. Default static context settings are used.
Public methodstaticCompile (string, XmlNameTable)Compile (String, XmlNameTable)Compile (String^, XmlNameTable^) Compiles the specified XQuery program and returns an XQueryXQueryXQuery object that represents the XQuery program. Default static context settings are used.
Public methodstaticCompile (string, XQuerySettings)Compile (String, XQuerySettings)Compile (String^, XQuerySettings^) Compiles the specified XQuery program and returns an XQueryXQueryXQuery object that represents the XQuery program. The specified static context settings are used.
Public methodstaticCompile (Uri, Stream, XQuerySettings)Compile (Uri, Stream, XQuerySettings)Compile (Uri^, Stream^, XQuerySettings^) Loads and compiles the specified XQuery program and returns an XQueryXQueryXQuery object that represents the XQuery program. The specified static context settings are used.
Public methodstaticCompile (Uri, string)Compile (Uri, String)Compile (Uri^, String^) Compiles the specified XQuery program and returns an XQueryXQueryXQuery object that represents the XQuery program. Default static context settings are used.
Public methodstaticCompile (Uri, string, XmlNameTable)Compile (Uri, String, XmlNameTable)Compile (Uri^, String^, XmlNameTable^) Compiles the specified XQuery program and returns an XQueryXQueryXQuery object that represents the XQuery program. Default static context settings are used.
Public methodstaticCompile (Uri, string, XQuerySettings)Compile (Uri, String, XQuerySettings)Compile (Uri^, String^, XQuerySettings^) Compiles the specified XQuery program and returns an XQueryXQueryXQuery object that represents the XQuery program. The specified static context settings are used.
Public methodstaticCompile (XmlReader, XQuerySettings)Compile (XmlReader, XQuerySettings)Compile (XmlReader^, XQuerySettings^) Compiles the XQuery program expressed using the XML Syntax for XQuery 1.0 (XQueryX) and returns an XQueryXQueryXQuery object that represents the XQuery program. The specified static context settings are used.
Public methodstaticCompile (IXPathNavigable, XQuerySettings)Compile (IXPathNavigable, XQuerySettings)Compile (IXPathNavigable^, XQuerySettings^) Compiles the XQuery program expressed using the XML Syntax for XQuery 1.0 (XQueryX) and returns an XQueryXQueryXQuery object that represents the XQuery program. The specified static context settings are used.

Top