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

SyncSourceXmlChangeCount() public method

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