AwesomeSauce.Configuration.Routing.RestfulCreateRoutingConvention.Matches C# (CSharp) Method

Matches() public method

public Matches ( ActionCall call, IConfigurationObserver log ) : bool
call ActionCall
log IConfigurationObserver
return bool
        public bool Matches(ActionCall call, IConfigurationObserver log)
        {
            return call.HandlerType.Closes(typeof(RestfulCreateHandler<>));
        }
RestfulCreateRoutingConvention