SIPSorcery.Servers.SIPProxyDispatcher.StartService C# (CSharp) Method

StartService() private method

private StartService ( ) : void
return void
        private void StartService()
        {
            try
            {
                if (WCFUtility.DoesWCFServiceExist(this.GetType().FullName.ToString()))
                {
                    ServiceHost callDispatcherHost = new ServiceHost(this);
                    callDispatcherHost.Open();
                    logger.Debug("SIPProxyDispatcher call dispatcher service started.");
                }
            }
            catch (Exception excp)
            {
                logger.Warn("Exception SIPProxyDispatcher StartService. " + excp.Message);
            }
        }