CQRSalad.Dispatching.Subscriptions.DispatcherSubscriptionsStore.Get C# (CSharp) Метод

Get() публичный Метод

public Get ( Type messageType ) : IEnumerable
messageType System.Type
Результат IEnumerable
        public IEnumerable<DispatcherSubscription> Get(Type messageType)
        {
            if (!_subscriptions.ContainsKey(messageType))
            {
                throw new HandlerNotFoundException(messageType);
            }
            return _subscriptions[messageType];
        }
DispatcherSubscriptionsStore