Spring.NET学习笔记(3)-注册事件注入

    事件注入是.net版本的spring特有的,其实现方式是反向的,同时支持静态事件和实例事件

<object id="source" type="Spring.Objects.TestObject, Spring.Core.Tests"/>

<object id="staticEventListener" type="Spring.Objects.TestEventHandler, Spring.Core.Tests">
  <!-- wired up to a static event -->
  <listener event="StaticClick" method="HandleEvent">
      <ref type="Spring.Objects.TestObject, Spring.Core.Tests"/>
  </listener>
</object>

<object id="instanceEventListener" type="Spring.Objects.TestEventHandler, Spring.Core.Tests">
  <!-- wired up to an event exposed on an instance -->
  <listener event="Click" method="HandleEvent">
      <ref object="source"/>
  </listener>
</object>

internal class TestEventHandler 
    {
        public virtual void HandleEvent (object sender, EventArgs e) 
        {
            _eventWasHandled = true;
        }

        public virtual bool EventWasHandled 
        {
            get 
            {
                return _eventWasHandled;
            }
        }

        protected bool _eventWasHandled;
    }

 

public event EventHandler Click;

public static event EventHandler StaticClick;

/// <summary>
/// Public method to programmatically raise the <event>Click</event> event
/// while testing.
/// </summary>
public void OnClick()
{
    if (Click != null)
    {
        Click(this, EventArgs.Empty);
    }
}

/// <summary>
/// Public method to programmatically raise the <b>static</b>
/// <event>Click</event> event while testing.
/// </summary>
public static void OnStaticClick()
{
    if (TestObject.StaticClick != null)
    {
        TestObject.StaticClick(typeof (TestObject), EventArgs.Empty);
    }
}

 

Server测试

[Test]
public virtual void InstanceEventWiring()
{
    DefaultListableObjectFactory factory = new DefaultListableObjectFactory();
    XmlObjectDefinitionReader reader = new XmlObjectDefinitionReader(factory);
    reader.LoadObjectDefinitions(new ReadOnlyXmlTestResource("event-wiring.xml", GetType()));
    ITestObject source = factory["source"] as ITestObject;
    TestEventHandler instanceHandler = factory["instanceEventListener"] as TestEventHandler;
    // raise the event... handlers should be notified at this point (obviously)
    source.OnClick();
    Assert.IsTrue(instanceHandler.EventWasHandled,
                  "The instance handler did not get notified when the instance event was raised (and was probably not wired up in the first place).");
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值