さまざまなイベントをサブスクライブしようとする小さなアプリを作成しましたが、さまざまなイベントの種類すべてについて、適切な説明やリストが見つかりません。誰が彼らが何であるか知っていますか?たとえば、これまでのところ私はこれらを持っています:
var eventService = this.projectCollection.GetService(typeof(IEventService)) as IEventService;
this.subscriptions.Add(eventService.SubscribeEvent("WorkItemChangedEvent", "", delPref));
this.subscriptions.Add(eventService.SubscribeEvent("BuildCompletionEvent", "", delPref));
どんな助けでも大歓迎です。