Opc.Ua.Server.ObjectSource.Construct C# (CSharp) Метод

Construct() публичный статический Метод

Creates a new instance of the node.
public static Construct ( IServerInternal server ) : ObjectSource
server IServerInternal
Результат 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