Inheritance: 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="aSid"></param>
        public void SyncUnsubscribe(String aSid)
        {
            SyncUnsubscribeOpenhomeOrgSubscriptionLongPoll1 sync = new SyncUnsubscribeOpenhomeOrgSubscriptionLongPoll1(this);

            BeginUnsubscribe(aSid, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
        }
 /// <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="aSid"></param>
 public void SyncUnsubscribe(String aSid)
 {
     SyncUnsubscribeOpenhomeOrgSubscriptionLongPoll1 sync = new SyncUnsubscribeOpenhomeOrgSubscriptionLongPoll1(this);
     BeginUnsubscribe(aSid, sync.AsyncComplete());
     sync.Wait();
     sync.ReportError();
 }