OpenHome.Net.ControlPoint.Proxies.CpProxyUpnpOrgContentDirectory1.SyncGetIndexerStatus C# (CSharp) Метод

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

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncGetIndexerStatus ( String &aStatus ) : void
aStatus String
Результат void
        public void SyncGetIndexerStatus(out String aStatus)
        {
            SyncGetIndexerStatusUpnpOrgContentDirectory1 sync = new SyncGetIndexerStatusUpnpOrgContentDirectory1(this);
            BeginGetIndexerStatus(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aStatus = sync.Status();
        }