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

SyncSource() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncSource ( uint aIndex, String &aSystemName, String &aType, String &aName, bool &aVisible ) : void
aIndex uint
aSystemName String
aType String
aName String
aVisible bool
return void
        public void SyncSource(uint aIndex, out String aSystemName, out String aType, out String aName, out bool aVisible)
        {
            SyncSourceAvOpenhomeOrgProduct1 sync = new SyncSourceAvOpenhomeOrgProduct1(this);
            BeginSource(aIndex, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aSystemName = sync.SystemName();
            aType = sync.Type();
            aName = sync.Name();
            aVisible = sync.Visible();
        }
CpProxyAvOpenhomeOrgProduct1