'Declaration
<ExtensionAttribute()> Public Overloads Shared Function RegisterNode( _ ByVal clientNodeRegistration As IEasyUAClientNodeRegistration, _ ByVal nodeArguments As UANodeArguments _ ) As Integer
'Usage
Dim clientNodeRegistration As IEasyUAClientNodeRegistration Dim nodeArguments As UANodeArguments Dim value As Integer value = IEasyUAClientNodeRegistrationExtension.RegisterNode(clientNodeRegistration, nodeArguments)
[Extension()] public static int RegisterNode( IEasyUAClientNodeRegistration clientNodeRegistration, UANodeArguments nodeArguments )
[Extension()] public: static int RegisterNode( IEasyUAClientNodeRegistration^ clientNodeRegistration, UANodeArguments^ nodeArguments )
Parameters
- clientNodeRegistration
- The client node registration object that will perform the operation.
This is typically obtained by calling System.IServiceProvider.GetService(System.Type) on the OpcLabs.EasyOpc.UA.IEasyUAClient (
EasyUAClient
object) with the type of OpcLabs.EasyOpc.UA.Services.IEasyUAClientNodeRegistration as an argument.The value of this parameter cannot be
null
(Nothing
in Visual Basic). - nodeArguments
- Node arguments object for the node that should be registered.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).