Write binary data file
XML
<bin:write var="var">
string
</bin:write>
<bin:write /> writes content to a binary data file and returns its identifier.
<bin:write /> is the complement of the <bin:read /> operation.
Attributes
| Name | Type | Description | Defined By |
|---|---|---|---|
| var | var | Result variable name | bin:write |
Results
| Binding | Type | Predicate |
|---|---|---|
| var | int | N/A |
Examples
XML
<bin:write var="id">iXML</bin:write>
<output>
<bin:read id="$id"/>
</output>
<!-- iXML -->