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

SyncModel() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncModel ( String &aName, String &aInfo, String &aUrl, String &aImageUri ) : void
aName String
aInfo String
aUrl String
aImageUri String
return void
        public void SyncModel(out String aName, out String aInfo, out String aUrl, out String aImageUri)
        {
            SyncModelAvOpenhomeOrgProduct1 sync = new SyncModelAvOpenhomeOrgProduct1(this);
            BeginModel(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aName = sync.Name();
            aInfo = sync.Info();
            aUrl = sync.Url();
            aImageUri = sync.ImageUri();
        }
CpProxyAvOpenhomeOrgProduct1