當前位置: 首頁>>代碼示例>>C#>>正文


C# ProxyFactory.AddInterface方法代碼示例

本文整理匯總了C#中Spring.Aop.Framework.ProxyFactory.AddInterface方法的典型用法代碼示例。如果您正苦於以下問題:C# ProxyFactory.AddInterface方法的具體用法?C# ProxyFactory.AddInterface怎麽用?C# ProxyFactory.AddInterface使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Spring.Aop.Framework.ProxyFactory的用法示例。


在下文中一共展示了ProxyFactory.AddInterface方法的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: AdvisedSupportListenerMethodsAreCalledAppropriately

        public void AdvisedSupportListenerMethodsAreCalledAppropriately()
        {
            IAdvisedSupportListener listener = MockRepository.GenerateMock<IAdvisedSupportListener>();

            ProxyFactory factory = new ProxyFactory(new TestObject());
            factory.AddListener(listener);

            // must fire the Activated callback...
            factory.GetProxy();
            // must fire the AdviceChanged callback...
            factory.AddAdvice(new NopInterceptor());
            // must fire the InterfacesChanged callback...
            factory.AddInterface(typeof(ISerializable));

            listener.AssertWasCalled(x => x.Activated(Arg<AdvisedSupport>.Is.NotNull));
            listener.AssertWasCalled(x => x.AdviceChanged(Arg<AdvisedSupport>.Is.NotNull));
            listener.AssertWasCalled(x => x.InterfacesChanged(Arg<AdvisedSupport>.Is.NotNull));
        }
開發者ID:smnbss,項目名稱:spring-net,代碼行數:18,代碼來源:ProxyFactoryTests.cs

示例2: AdvisedSupportListenerMethodsAre_NOT_CalledIfProxyHasNotBeenCreated

        public void AdvisedSupportListenerMethodsAre_NOT_CalledIfProxyHasNotBeenCreated()
        {
            IAdvisedSupportListener listener = MockRepository.GenerateMock<IAdvisedSupportListener>();

            ProxyFactory factory = new ProxyFactory(new TestObject());
            factory.AddListener(listener);

            // must not fire the AdviceChanged callback...
            factory.AddAdvice(new NopInterceptor());
            // must not fire the InterfacesChanged callback...
            factory.AddInterface(typeof(ISerializable));

            listener.AssertWasNotCalled(x => x.AdviceChanged(Arg<AdvisedSupport>.Is.Anything));
            listener.AssertWasNotCalled(x => x.InterfacesChanged(Arg<AdvisedSupport>.Is.Anything));
        }
開發者ID:smnbss,項目名稱:spring-net,代碼行數:15,代碼來源:ProxyFactoryTests.cs

示例3: AddInterfaceWhenConfigurationIsFrozen

 public void AddInterfaceWhenConfigurationIsFrozen()
 {
     ProxyFactory factory = new ProxyFactory();
     factory.IsFrozen = true;
     factory.AddInterface(typeof(ITestObject));
 }
開發者ID:smnbss,項目名稱:spring-net,代碼行數:6,代碼來源:ProxyFactoryTests.cs

示例4: AddRepeatedInterface

 public void AddRepeatedInterface()
 {
     ITimeStamped tst = new AnonymousClassTimeStamped(this);
     ProxyFactory pf = new ProxyFactory(tst);
     // We've already implicitly added this interface.
     // This call should be ignored without error
     pf.AddInterface(typeof(ITimeStamped));
     // All cool
     ITimeStamped ts = (ITimeStamped)pf.GetProxy();
 }
開發者ID:smnbss,項目名稱:spring-net,代碼行數:10,代碼來源:ProxyFactoryTests.cs

示例5: AddInterfaceWhenConfigurationIsFrozen

 public void AddInterfaceWhenConfigurationIsFrozen()
 {
     ProxyFactory factory = new ProxyFactory();
     factory.IsFrozen = true;
     Assert.Throws<AopConfigException>(() => factory.AddInterface(typeof(ITestObject)));
 }
開發者ID:spring-projects,項目名稱:spring-net,代碼行數:6,代碼來源:ProxyFactoryTests.cs

示例6: GetRequestHandler

        private IRequestHandler GetRequestHandler()
        {
            if (this.requestHandler == null)
            {
                ProxyFactory proxyFactory = new ProxyFactory(this);
                proxyFactory.AddInterface(typeof(IRequestHandler));
                proxyFactory.AddIntroduction(new DefaultIntroductionAdvisor(new HttpRequestHandler()));
                proxyFactory.ProxyTargetType = true;
                this.requestHandler = proxyFactory.GetProxy() as IRequestHandler;
            }

            return this.requestHandler;
        }
開發者ID:TatumAndBell,項目名稱:RapidWebDev-Enterprise-CMS,代碼行數:13,代碼來源:DynamicPageDataToHtmlHandler.cs

示例7: AdvisedSupportListenerMethodsAre_NOT_CalledIfProxyHasNotBeenCreated

        public void AdvisedSupportListenerMethodsAre_NOT_CalledIfProxyHasNotBeenCreated()
        {
            IDynamicMock mock = new DynamicMock(typeof(IAdvisedSupportListener));
            IAdvisedSupportListener listener = (IAdvisedSupportListener)mock.Object;

            ProxyFactory factory = new ProxyFactory(new TestObject());
            factory.AddListener(listener);

            // must not fire the AdviceChanged callback...
            factory.AddAdvice(new NopInterceptor());
            // must not fire the InterfacesChanged callback...
            factory.AddInterface(typeof(ISerializable));

            mock.Verify();
        }
開發者ID:fuadm,項目名稱:spring-net,代碼行數:15,代碼來源:ProxyFactoryTests.cs

示例8: AdvisedSupportListenerMethodsAreCalledAppropriately

        public void AdvisedSupportListenerMethodsAreCalledAppropriately()
        {
            IDynamicMock mock = new DynamicMock(typeof(IAdvisedSupportListener));
            IAdvisedSupportListener listener = (IAdvisedSupportListener)mock.Object;

            mock.Expect("Activated");
            mock.Expect("AdviceChanged");
            mock.Expect("InterfacesChanged");

            ProxyFactory factory = new ProxyFactory(new TestObject());
            factory.AddListener(listener);

            // must fire the Activated callback...
            factory.GetProxy();
            // must fire the AdviceChanged callback...
            factory.AddAdvice(new NopInterceptor());
            // must fire the InterfacesChanged callback...
            factory.AddInterface(typeof(ISerializable));

            mock.Verify();
        }
開發者ID:fuadm,項目名稱:spring-net,代碼行數:21,代碼來源:ProxyFactoryTests.cs

示例9: CreateProxy

 private IRepositoryInterface CreateProxy(RepositoryInterfaceImpl target)
 {
     MapPersistenceExceptionTranslator mpet = new MapPersistenceExceptionTranslator();
     mpet.AddTranslation(persistenceException, new InvalidDataAccessApiUsageException("", persistenceException));
     ProxyFactory pf = new ProxyFactory(target);
     pf.AddInterface(typeof(IRepositoryInterface));
     AddPersistenceExceptionTranslation(pf, mpet);
     return (IRepositoryInterface) pf.GetProxy();
 }
開發者ID:ouyangyl,項目名稱:MySpringNet,代碼行數:9,代碼來源:PersistenceExceptionTranslationAdvisorTests.cs

示例10: GetProxy

	    /// <summary>
	    /// Creates a new proxy for the supplied <paramref name="proxyInterface"/>
	    /// and <paramref name="interceptor"/>.
	    /// </summary>
	    /// <remarks>
	    /// <p>
	    /// This is a convenience method for creating a proxy for a single
	    /// interceptor.
	    /// </p>
	    /// </remarks>
	    /// <param name="proxyInterface">
	    /// The interface that the proxy must implement.
	    /// </param>
	    /// <param name="interceptor">
	    /// The interceptor that the proxy must invoke.
	    /// </param>
	    /// <returns>
	    /// A new AOP proxy for the supplied <paramref name="proxyInterface"/>
	    /// and <paramref name="interceptor"/>.
	    /// </returns>
	    public static object GetProxy(Type proxyInterface, IInterceptor interceptor)
	    {
	        ProxyFactory proxyFactory = new ProxyFactory();
	        proxyFactory.AddInterface(proxyInterface);
	        proxyFactory.AddAdvice(interceptor);
	        return proxyFactory.GetProxy();
	    }
開發者ID:Binodesk,項目名稱:spring-net,代碼行數:27,代碼來源:ProxyFactory.cs

示例11: InitializeProxy

        /// <summary>
        /// Initialize the proxy.
        /// </summary>
        private void InitializeProxy()
        {
            if (this.adviceChain.Length == 0)
            {
                return;
            }

            var factory = new ProxyFactory();
            foreach (var advice in this.adviceChain)
            {
                factory.AddAdvisor(new DefaultPointcutAdvisor(TruePointcut.True, advice));
            }

            factory.ProxyTargetType = false;
            factory.AddInterface(typeof(IContainerDelegate));

            // TODO: Is this really the right target??? Doesn't seem right.
            factory.Target = this;
            this.proxy = (IContainerDelegate)factory.GetProxy();
        }
開發者ID:DonMcRae,項目名稱:spring-net-amqp,代碼行數:23,代碼來源:SimpleMessageListenerContainer.cs


注:本文中的Spring.Aop.Framework.ProxyFactory.AddInterface方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。