Sophie

Sophie

distrib > Mageia > 7 > aarch64 > by-pkgid > b3bdfe6d859a3d6920ff2c44b38e9a6f > files > 253

saxon-manual-9.4.0.9-2.mga7.noarch.rpm

<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="../../make-menu.xsl" type="text/xsl"?><html>
   <head>
      <this-is section="extensibility" page="converting-args.net"
               subpage="converting-wrapped-dotnet"/>
      <!--
           Generated at 2011-12-09T20:47:22.916Z--><title>Saxonica: XSLT and XQuery Processing: Converting Wrapped .NET Objects</title>
      <meta name="coverage" content="Worldwide"/>
      <meta name="copyright" content="Copyright Saxonica Ltd"/>
      <meta name="title"
            content="Saxonica: XSLT and XQuery Processing: Converting Wrapped .NET Objects"/>
      <meta name="robots" content="noindex,nofollow"/>
      <link rel="stylesheet" href="../../saxondocs.css" type="text/css"/>
   </head>
   <body class="main">
      <h1>Converting Wrapped .NET Objects</h1>
      <p>Saxon allows an extension function to be return an arbitrary .NET object. This will then be wrapped as an XPath item, so that
it can be held in a variable and passed subsequently as an argument to another extension function. This second extension function
will see the original Java object minus its wrapper, provided it is declared to expect the appropriate Java class.</p>
      <p>A wrapped .NET object may be converted to another data type as follows.</p>
      <ul>
         <li content="para">
            <p>It is converted to a string by using its ToString() method; if the object is null, the result is
the empty string "".</p>
         </li>
         <li content="para">
            <p>It is converted to a boolean as follows: if it is null, the result is false, otherwise
it is converted to a string and the result is true if and only if the string is non-empty.</p>
         </li>
      </ul>
      <p>The type of a wrapped Java object may be declared in a variable declaration or function signature using a type name whose
namespace URI is "http://saxon.sf.net/.net-type", and whose local name is the fully qualified name of the .NET class, with any "$" signs 
replaced by hyphens. For example, the <code>sql:connection</code> extension function returns a value of type
<code>{http://saxon.sf.net/clitype}System.Data.SQlClient.SqlConnection</code>.</p>
      <table width="100%">
         <tr>
            <td>
               <p align="right"><a class="nav" href="../function-result.net.xml">Next</a></p>
            </td>
         </tr>
      </table>
   </body>
</html>