Opc.Ua.Server.ObjectSource.Construct C# (CSharp) Method

Construct() public static method

Creates a new instance of the node.
public static Construct ( IServerInternal server ) : ObjectSource
server IServerInternal
return ObjectSource
        public static ObjectSource Construct(IServerInternal server)
        {
            ObjectSource instance = new ObjectSource(server, null);
            instance.Initialize(null, null, null, 0, ObjectTypes.BaseObjectType);
            return instance;
        }
        #endregion

Same methods

ObjectSource::Construct ( IServerInternal server, NodeSource parent, NodeId referenceTypeId, NodeId nodeId, QualifiedName browseName, uint numericId ) : ObjectSource