『Spring.NET』IoC 中的事件处理

本文内容纲要:『Spring.NET』IoC 中的事件处理

C#中的事件是什么样的?

………………………………………………………………………………………………………………

In C# events are built right into the language thanks to the event keyword. Under the scenes, events are essentially a shorthand notation for delegates with some additional guidelines as to what the parameters to an event handler method should be (i.e. a sender System.Object and an System.EventArgs object).

In use, .NET events are combined with one or more event handler methods. Each handler method is programmatically added, or removed, from the event and corresponds to an object's method that should be invoked when a particular event occurs. When more than one handler method is added to an event, then each of the registered methods will be invoked in turn when an event occurs.

说明:

  1. C#中,事件在本质上使用了「代理」(或者叫委托)
  2. C#中,事件的参数是一个Ojbect型的发送者和一个EventArgs类型的事件信息列表
  3. 使用中,事件混合了一个或多个事件处理方法
  4. 当一个事件发生时,之前加入到这个事件代理的方法会被顺序执行

例如:

1 publicclassEventSource

2 {

3 publiceventEventHandlerClick;

4

5 publicvoidOnClick()

6 {

7 if(Click!=null)

8 {

9 Click(this,EventArgs.Empty);//Firetheeventofftotheregisteredhandlermethods

10 }

11 }

12 }

13 publicclassEventSourceHandler

14 {

15 publiceventEventHandlerHandlerEvent;

16 }

17

18 publicclassTest_

19 {

20 voidtest()

21 {

22 EventSourcesource=newEventSource();

23 EventSourceHandlereventListener1=newEventSourceHandler(); //Addingthefirsteventhandlermethodtotheevent

24 EventSourceHandlereventListener2=newEventSourceHandler()****;//Addingasecondeventhandlermethodtotheevent

25

26 source.Click+=eventListener1.HandlerEvent;

27 source.Click+=eventListener2.HandlerEvent;

28

29 source.OnClick();//FirsteventListener1.HandleEventisinvoked,theneventListener2.HandleEvent

30 }

31 }

IoC 中,声明事件处理 EventHandler

…………………………………………………………

配置文件:

1

2

3

4

5

6


7

8

9

10

11

12

13

说明:

  • 可以在配置项中使用标签来标注事件处理程序
  • event 是事件名称,是一个EventHandler名称 注:EventHandler是一个「代理」类型

第二种配置方式:

1

2 <listenermethod****="Handle.+">

3

4

5

说明:

  1. 你可以使用正则表达式来标注method
  2. Handle.+ 就是一个正则表达式

第三种配置方式:

1

2 <listener method="HandleEvent"event**="Cl.+"**>

3

4

5

说明:

  1. 你可以在event中使用正则表达式来过滤处理程序
  2. 如上代码所示

其他说明

…………………………………………………………

  1. 这里没有列出后面配置方法的具体实现,这并不是在真正的代码中可以没有
  2. 具体的调用过程,参考上几篇所描述的注入对象的使用,这里的新东西只是事件的注入
  3. 事件处理的注入与方法注入相似
  4. 在 刘冬.Net 的文章中,是将事件处理注入与方法的注入写到了一起,我是看官方文档中是分开写的,我就分开了,毕竟要以文档为主

本文内容总结:『Spring.NET』IoC 中的事件处理

原文链接:https://www.cnblogs.com/sitemanager/archive/2012/02/02/2336083.html

以上是 『Spring.NET』IoC 中的事件处理 的全部内容, 来源链接: utcz.com/z/296513.html

回到顶部