internal InternalInterfaceAopProxy(
     IInternalInterface realInstance,
     InterceptionHandler interceptionHandler)
 {
     _realInstance        = realInstance;
     _interceptionHandler = interceptionHandler;
 }
Example #2
0
        public void DoWork()
        {
            output.Append("Public work is based on ");
            IInternalInterface internalThis = ((IInternalInterface)this);

            internalThis.DoInternalWork();
            output.Append(".");
        }