A sample implementation of the INodeManager interface.
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: INodeManager2, INodeIdFactory, IDisposable
コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MonitoredNode2"/> class.
 /// </summary>
 /// <param name="nodeManager">The node manager.</param>
 /// <param name="node">The node.</param>
 public MonitoredNode2(CustomNodeManager2 nodeManager, NodeState node)
 {
     NodeManager = nodeManager;
     Node = node;
 }