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

SyncManufacturer() public method

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