XPathFunctionLibrary.XQuery11Functions PropertyXPathFunctionLibrary.XQuery11Functions PropertyXPathFunctionLibrary::XQuery11Functions Property

Gets the set of functions in XQuery 1.1 that are not in the XQuery 1.0 and XPath 2.0 function library

Syntax

Public Shared ReadOnly Property XQuery11Functions As XPathFunctionLibrary
        Get
public static XPathFunctionLibrary XQuery11Functions { get; }
public:
static property XPathFunctionLibrary^ XQuery11Functions {
    XPathFunctionLibrary^ get();
}
 

Remarks

This library is intended to be used in addition to the standard functions supplied by XQuery 1.0 and XPath 2.0, which then allows use of the entire XQuery 1.1 function library.

This library contains functions with the following signatures:

  • fn:pi() as xs:double
  • fn:sqrt($arg as double?) as xs:double?
  • fn:sin($arg as double?) as xs:double?
  • fn:cos($arg as double?) as xs:double?
  • fn:tan($arg as double?) as xs:double?
  • fn:asin($arg as double?) as xs:double?
  • fn:acos($arg as double?) as xs:double?
  • fn:atan($arg as double?) as xs:double?
  • fn:format-number($value as numeric?, $picture as xs:string) as xs:string
  • fn:format-number($value as numeric?, $picture as xs:string, $decimal-format-name as xs:string) as xs:string
  • fn:format-dateTime($value as xs:dateTime?, $picture as xs:string) as xs:string?
  • fn:format-dateTime($value as xs:dateTime?, $picture as xs:string, $language as xs:string?, $calendar as xs:string?, $country as xs:string) as xs:string?
  • fn:format-date($value as xs:date?, $picture as xs:string) as xs:string?
  • fn:format-date($value as xs:date?, $picture as xs:string, $language as xs:string?, $calendar as xs:string?, $country as xs:string) as xs:string?
  • fn:format-time($value as xs:time?, $picture as xs:string) as xs:string?
  • fn:format-time($value as xs:time?, $picture as xs:string, $language as xs:string?, $calendar as xs:string?, $country as xs:string) as xs:string?
  • fn:format-integer($value as xs:integer?, $picture as xs:string) as xs:string
  • fn:format-integer($value as xs:integer?, $picture as xs:string, $language as xs:language) as xs:string
  • fn:round($arg as numeric?, $precision as xs:integer) as numeric? (this is in addition to the single argument version of fn:round defined in XQuery 1.0)