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

SyncSourceXml() public method

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