'Declaration
<ExtensionAttribute()> Public Overloads Shared Function Write( _ ByVal client As IEasyUAClient, _ ByVal writeArguments As UAWriteArguments _ ) As ValueTuple(Of Boolean,Boolean)
'Usage
Dim client As IEasyUAClient Dim writeArguments As UAWriteArguments Dim value As ValueTuple(Of Boolean,Boolean) value = IEasyUAClientExtension.Write(client, writeArguments)
[Extension()] public static ValueTuple<bool,bool> Write( IEasyUAClient client, UAWriteArguments writeArguments )
[Extension()] public: static ValueTuple<bool,bool> Write( IEasyUAClient^ client, UAWriteArguments^ writeArguments )
Parameters
- client
- The client object that will perform the operation.
This is typically the EasyUAClient object.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - writeArguments
- Arguments specifying what to write to an OPC-UA server.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).