'Declaration
<ExtensionAttribute()> Public Overloads Shared Function SubscribeItem( _ ByVal client As IEasyDAClient, _ ByVal machineName As String, _ ByVal serverClass As String, _ ByVal itemId As String, _ ByVal dataType As VarType, _ ByVal requestedUpdateRate As Integer, _ ByVal percentDeadband As Single, _ ByVal callback As EasyDAItemChangedEventHandler, _ ByVal state As Object _ ) As Integer
'Usage
Dim client As IEasyDAClient Dim machineName As String Dim serverClass As String Dim itemId As String Dim dataType As VarType Dim requestedUpdateRate As Integer Dim percentDeadband As Single Dim callback As EasyDAItemChangedEventHandler Dim state As Object Dim value As Integer value = IEasyDAClientExtension.SubscribeItem(client, machineName, serverClass, itemId, dataType, requestedUpdateRate, percentDeadband, callback, state)
[Extension()] public static int SubscribeItem( IEasyDAClient client, string machineName, string serverClass, string itemId, VarType dataType, int requestedUpdateRate, float percentDeadband, EasyDAItemChangedEventHandler callback, object state )
[Extension()] public: static int SubscribeItem( IEasyDAClient^ client, String^ machineName, String^ serverClass, String^ itemId, VarType^ dataType, int requestedUpdateRate, float percentDeadband, EasyDAItemChangedEventHandler^ callback, Object^ state )
Parameters
- client
- The client object that will perform the operation.
This is typically the EasyDAClient object.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - machineName
- Name of the machine (empty string for local computer).
The value represents a UNC or DNS computer name. Any string can be passed to this parameter (i.e. will not cause System.ArgumentException), but not all values make sense and will work when an operation using them is attempted. IPv6 addresses are normally enclosed between '[' and ']'.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - serverClass
- Contains ProgID of the OPC server.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - itemId
- ID of the item that will be subscribed to.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - dataType
- Specifies the data type requested. Passing OpcLabs.BaseLib.ComInterop.VarTypes.Empty means that the server's canonical data type should be used.
Because the OpcLabs.BaseLib.ComInterop.VarType has an implicit conversion from System.Int32 and OpcLabs.BaseLib.ComInterop.VarTypes, in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use an integer (representing the numerical value of the COM VARTYPE), or an element of the OpcLabs.BaseLib.ComInterop.VarTypes enumeration (or an allowed combination of OpcLabs.BaseLib.ComInterop.VarTypes flags) in place of this parameter, and the corresponding data type specification will be constructed automatically. When the implicit conversion operators are not supported (such as with Python.NET), you can use the OpcLabs.BaseLib.ComInterop.VarType.VarType Constructor(Int32) or OpcLabs.BaseLib.ComInterop.VarType.VarType Constructor(VarTypes) constructor instead.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - requestedUpdateRate
- How often should the updates be received (number of milliseconds)
- percentDeadband
- The percent change in an item value that will cause an update
- callback
- A callback method to be invoked for each significant item change.
The value of this parameter can be
null
(Nothing
in Visual Basic). - state
- The state object (can be any object supplied by your code); available in event notifications.
The value of this parameter can be
null
(Nothing
in Visual Basic).