Check In işlemlerinde 'Related Work Items' alanın zorunlu hale gelmesini aşağıdaki kod ile sağlayabilirsiniz.
var ev = notificationEventArgs as CheckinNotification;
CheckinNotificationWorkItemInfo[] workItemInfos = ev.NotificationInfo.WorkItemInfo;
if ((workItemInfos == null || workItemInfos.Length == 0))
{
statusMessage = "Work Item ID numarası yazınız ";
return EventNotificationStatus.ActionDenied;
}
No comments:
Post a Comment