상속: OpenHome.Net.ControlPoint.SyncProxyAction
 /// <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="aRevision"></param>
 public void SyncGetRevision(out uint aRevision)
 {
     SyncGetRevisionRaumfeldComConfigService1 sync = new SyncGetRevisionRaumfeldComConfigService1(this);
     BeginGetRevision(sync.AsyncComplete());
     sync.Wait();
     sync.ReportError();
     aRevision = sync.Revision();
 }