RaumfeldNET.ConfigManager.findConfigService C# (CSharp) Метод

findConfigService() публичный Метод

public findConfigService ( ) : void
Результат void
        public void findConfigService()
        {
            upnpStack.onConfigServiceFound += configServiceFoundSink;
            upnpStack.onConfigServiceRemoved += configServiceRemovedSink;
            upnpStack.findConfigService();
        }

Usage Example

Пример #1
0
        protected void mediaServerManager_mediaServerFoundSink()
        {
            // after media server was found we can retrieve the zones because then we got the ip for web request
            // this will be done via eventing from the config service
            rendererManager.findMediaRenderer();
            configManager.findConfigService();
            zoneManager.retrieveZones();

            playlistManagement = new PlaylistManagement(upnpStack);

            if (mediaServerFound != null)
            {
                mediaServerFound();
            }
        }