/// <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 SyncMetatext(out String aValue) { SyncMetatextAvOpenhomeOrgInfo1 sync = new SyncMetatextAvOpenhomeOrgInfo1(this); BeginMetatext(sync.AsyncComplete()); sync.Wait(); sync.ReportError(); aValue = sync.Value(); }