/// <summary>
        /// Invoke the action synchronously
        /// </summary>
        /// <remarks>Blocks until the action has been processed
        /// on the device and sets any output arguments</remarks>
        /// <param name="aList"></param>
        public void SyncDeviceList(out String aList)
        {
            SyncDeviceListAvOpenhomeOrgExakt2 sync = new SyncDeviceListAvOpenhomeOrgExakt2(this);

            BeginDeviceList(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aList = sync.List();
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Invoke the action synchronously
 /// </summary>
 /// <remarks>Blocks until the action has been processed
 /// on the device and sets any output arguments</remarks>
 /// <param name="aList"></param>
 public void SyncDeviceList(out String aList)
 {
     SyncDeviceListAvOpenhomeOrgExakt2 sync = new SyncDeviceListAvOpenhomeOrgExakt2(this);
     BeginDeviceList(sync.AsyncComplete());
     sync.Wait();
     sync.ReportError();
     aList = sync.List();
 }