You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`.startCapability( „<Capability-Name>“, [<{ Parameter-Object }>], [<clb function>] )`<br /> Return value: `if clb then null else Promise`| Call the capability Function and give a list of parameters. |
| E.g. Variant 1:<br />`await startCapability( „PhotographAction“, { height: { value: 80, unit: “px” } )`| Needed for the Management System to determine the correct Capability Description if there are multiple Description of the same Capability kind (e.g. two times "PhotoAction") with different Parameter units, e.g. "cm" and "pt" |
170
-
| E.g. Variant 2:<br />`await startCapability( „https://schema.org/PhotographAction“, { “https://schema.org/height”: 80 } )`| Only needed for the Management System to determine the correct Capability Description if there are multiple descriptions of the same capability kind or its parameter (e.g. "height" from "schema.org/height" and from "vocab.org/height") |
171
-
172
155
#### `getService('network')`
173
156
174
157
Inside of a Script Task it is possible to send HTTP requests to a given URL. The
0 commit comments