Appccelerate.EventBroker.Internals.Inspection.PropertySubscriptionScanResult.PropertySubscriptionScanResult C# (CSharp) Method

PropertySubscriptionScanResult() public method

public PropertySubscriptionScanResult ( string topic, MethodInfo method, Type handlerType, IEnumerable subscriptionMatcherTypes ) : System
topic string
method System.Reflection.MethodInfo
handlerType System.Type
subscriptionMatcherTypes IEnumerable
return System
        public PropertySubscriptionScanResult(
            string topic, 
            MethodInfo method, 
            Type handlerType, 
            IEnumerable<Type> subscriptionMatcherTypes)
        {
            this.Topic = topic;
            this.Method = method;
            this.HandlerType = handlerType;
            this.SubscriptionMatcherTypes = subscriptionMatcherTypes;
        }
PropertySubscriptionScanResult