OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgProduct1.SyncSourceIndex C# (CSharp) Method

SyncSourceIndex() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncSourceIndex ( uint &aValue ) : void
aValue uint
return void
        public void SyncSourceIndex(out uint aValue)
        {
            SyncSourceIndexAvOpenhomeOrgProduct1 sync = new SyncSourceIndexAvOpenhomeOrgProduct1(this);
            BeginSourceIndex(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aValue = sync.Value();
        }
CpProxyAvOpenhomeOrgProduct1