SenseNet.ContentRepository.Tests.NotificationTests.NotificationHandlerAccessor.CollectEventsPerSubscription C# (CSharp) Метод

CollectEventsPerSubscription() публичный статический Метод

public static CollectEventsPerSubscription ( NotificationFrequency freq, System.DateTime now ) : IEnumerable
freq NotificationFrequency
now System.DateTime
Результат IEnumerable
            public static IEnumerable<Subscription> CollectEventsPerSubscription(NotificationFrequency freq, DateTime now)
            {
                var m = type.GetMethod("CollectEventsPerSubscription", BindingFlags.Static | BindingFlags.NonPublic);
                var result = m.Invoke(null, new object[] { freq, now });
                return (IEnumerable<Subscription>)result;
            }
        }
NotificationTests.NotificationHandlerAccessor