Opc.Ua.EndpointBase.EndpointBase C# (CSharp) Method

EndpointBase() protected method

Initializes the endpoint with a server instead of a host.
protected EndpointBase ( ServerBase server ) : System
server ServerBase
return System
        protected EndpointBase(ServerBase server)
        {
            if (server == null) throw new ArgumentNullException("server");

            m_host = null;
            m_server = server;

            SupportedServices = new Dictionary<ExpandedNodeId, ServiceDefinition>();
        }
        #endregion

Same methods

EndpointBase::EndpointBase ( ) : System
EndpointBase::EndpointBase ( IServiceHostBase host ) : System