Write binary data file
Anatomy
<bin:write var="var">
string
</bin:write>
Description: 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
Example
<bin:write var="id">iXML</bin:write>
<output>
<bin:read id="$id"/>
</output>
<!-- iXML -->