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

SyncProduct() public method

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