OpcUaServerServiceBrowseTimeout Property
General info
Label |
Browse Timeout |
Description |
The timeout in milliseconds for Browse service calls used by the OPC UA server if no timeout is provided by the client. If not set, the default timeout is used |
Data type |
Int32 |
Min value |
0 |
Type |
Regular |
Code |
2171 |
Symbolic name |
MODEL_PROP_OPCUASERVERSERVICEBROWSETIMEOUT |
Lua access code |
inmation.model.properties.OpcUaServerServiceBrowseTimeout |
Available since |
1.18.12.2422 |
- Parent properties
Attributes
Name | Tooltip |
---|---|
PROP_CONFIGURABLE | The property is configurable and can be changed with DataStudio and the various inmation APIs |
PROP_VISIBLE | The property is visible in DataStudio and can be read by the inmation APIs |
PROP_UNIT | The property has an engineering unit |
PROP_HAS_LOLIMIT | The property has a low limit |
PROP_NULLABLE | This Property can have no value |
Examples
Read from or write to the OpcUaServerServiceBrowseTimeout
property.
-- Read from the OpcUaServerServiceBrowseTimeout
inmation.getvalue("<OBJECT FULL PATH>.OpcUaServerServiceBrowseTimeout")
-- Write to the OpcUaServerServiceBrowseTimeout
inmation.setvalue("<OBJECT FULL PATH>.OpcUaServerServiceBrowseTimeout", VALUE)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "so", Password = "inmation" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the OpcUaServerServiceBrowseTimeout
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.OpcUaServerServiceBrowseTimeout"));
// Write to the OpcUaServerServiceBrowseTimeout
Result result = sli.WriteValue(sc, new WriteItem(VALUE, "<OBJECT FULL PATH>.OpcUaServerServiceBrowseTimeout"));