/// <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="aValue"></param> public void SyncAttributes(out String aValue) { SyncAttributesAvOpenhomeOrgSender1 sync = new SyncAttributesAvOpenhomeOrgSender1(this); BeginAttributes(sync.AsyncComplete()); sync.Wait(); sync.ReportError(); aValue = sync.Value(); }