internal AdvisableMessageSink(AdvisableContextProperty ownerContextProperty, Type advicedType, IMessageSink nextSink)
 {
     this.ownerContextProperty = ownerContextProperty;
     this.advicedType          = advicedType;
     this.advicedInstance      = new WeakReference(null);
     this.nextSink             = nextSink;
 }
Ejemplo n.º 2
0
 internal AdvisableMessageSink(AdvisableContextProperty ownerContextProperty, Type advicedType, IMessageSink nextSink)
 {
     this.ownerContextProperty = ownerContextProperty;
     this.advicedType = advicedType;
     this.advicedInstance = new WeakReference(null);
     this.nextSink = nextSink;
 }