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

SyncSourceCount() public method

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