public void Disconnect () {
     m_pSink =null;
 }
 // OPM passes its implementation of IDynamicPropertyNotify, you
 // cache it and call it to inform OPM your property has changed
 public void Connect (object pSink) {
     m_pSink =(IDynamicPropertyNotify2)pSink;
 }
 public void Disconnect()
 {
     m_pSink = null;
 }
 // OPM passes its implementation of IDynamicPropertyNotify, you
 // cache it and call it to inform OPM your property has changed
 public void Connect(object pSink)
 {
     m_pSink = (IDynamicPropertyNotify2)pSink;
 }
Example #5
0
 void IDynamicProperty2.Disconnect()
 {
     m_pSink = null;
 }
Example #6
0
 // OPM passes its implementation of IDynamicPropertyNotify, you
 // cache it and call it to inform OPM your property has changed
 void IDynamicProperty2.Connect(object pSink)
 {
     m_pSink = (IDynamicPropertyNotify2)pSink;
 }