예제 #1
0
        // Protected Methods
        protected override DomainNotificationHandler <DomainNotification> GetDomainNotificationHandler()
        {
            return(async domainNotification => {
                DomainNotificationsCollection.Add(domainNotification);

                return await Task.FromResult(true);
            });
        }