我写了一个小应用程序,它试图订阅各种事件,但找不到一个很好的解释或所有不同事件类型的列表。有谁知道它们是什么?例如,到目前为止,我有这些:
var eventService = this.projectCollection.GetService(typeof(IEventService)) as IEventService;
this.subscriptions.Add(eventService.SubscribeEvent("WorkItemChangedEvent", "", delPref));
this.subscriptions.Add(eventService.SubscribeEvent("BuildCompletionEvent", "", delPref));
非常感谢任何帮助。