Ejemplo n.º 1
0
 // Disconnect from ActiveX event source
 void Disconnect()
 {
   System.Threading.Monitor.Enter(this);
   try {
     if (EventSinkHelper != null)
       ConnectionPoint.Unadvise(EventSinkHelper.Cookie);
     ConnectionPoint = null;
     EventSinkHelper = null;
   } catch { }
   System.Threading.Monitor.Exit(this);
 }
Ejemplo n.º 2
0
 // Connect to ActiveX event source
 void Connect()
 {
   if (ConnectionPoint == null)
   {
     ConnectionCount = 0;
     Guid g = new Guid("A85C0477-714C-4A06-B9F6-7C8CA38B45DC");
     ConnectionPointContainer.FindConnectionPoint(ref g, out ConnectionPoint);
     EventSinkHelper = new IWMPVideoCtrlEvents_SinkHelper();
     ConnectionPoint.Advise(EventSinkHelper, out EventSinkHelper.Cookie);
   }
 }