Build 1.01.318.0

[This is preliminary documentation and is subject to change.]

A sample implementation of the INodeManager interface.

Namespace: Opc.Ua.Server
Assembly: Opc.Ua.Server (in Opc.Ua.Server.dll) Version: 1.1.318.1 (1.01.318.1)

Syntax

C#
public class CustomNodeManager2 : INodeManager2, 
	INodeManager, INodeIdFactory, IDisposable
Visual Basic
Public Class CustomNodeManager2 _
	Implements INodeManager2, INodeManager, INodeIdFactory, IDisposable
Visual C++
public ref class CustomNodeManager2 : INodeManager2, 
	INodeManager, INodeIdFactory, IDisposable

Remarks

This node manager is a base class used in multiple samples. It implements the INodeManager interface and allows sub-classes to override only the methods that they need. This example is not part of the SDK because most real implementations of a INodeManager will need to modify the behavoir of the base class.

Inheritance Hierarchy

System..::..Object
  Opc.Ua.Server..::..CustomNodeManager2
    Opc.Ua.Server..::..DiagnosticsNodeManager

See Also