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

EndpointBase() protected method

Initializes the when it is created directly.
protected EndpointBase ( IServiceHostBase host ) : System
host IServiceHostBase The host.
return System
        protected EndpointBase(IServiceHostBase host)
        {
            if (host == null) throw new ArgumentNullException("host");

            m_host = host;
            m_server = host.Server;
            
            SupportedServices  = new Dictionary<ExpandedNodeId,ServiceDefinition>();
        }

Same methods

EndpointBase::EndpointBase ( ) : System
EndpointBase::EndpointBase ( ServerBase server ) : System