Opc.Ua.ServerBase.InitializeServiceHosts C# (CSharp) Method

InitializeServiceHosts() protected method

Creates the endpoints and creates the hosts.
protected InitializeServiceHosts ( ApplicationConfiguration configuration, BindingFactory bindingFactory, ApplicationDescription &serverDescription, EndpointDescriptionCollection &endpoints ) : IList
configuration ApplicationConfiguration The object that stores the configurable configuration information for a UA application.
bindingFactory BindingFactory The object of a class that manages a mapping between a URL scheme and a binding.
serverDescription ApplicationDescription The object of the class that contains a description for the ApplicationDescription DataType.
endpoints EndpointDescriptionCollection The collection of objects.
return IList
        protected virtual IList<ServiceHost> InitializeServiceHosts(
            ApplicationConfiguration          configuration, 
            BindingFactory                    bindingFactory,
            out ApplicationDescription        serverDescription,
            out EndpointDescriptionCollection endpoints)            
        {
            serverDescription = null;
            endpoints = null;
            return new List<ServiceHost>();
        }