ServiceStack.Host.InMemoryRollingRequestLogger.ExcludeRequestType C# (CSharp) Method

ExcludeRequestType() protected method

protected ExcludeRequestType ( Type requestType ) : bool
requestType System.Type
return bool
        protected bool ExcludeRequestType(Type requestType)
        {
            return ExcludeRequestDtoTypes != null
                   && requestType != null
                   && ExcludeRequestDtoTypes.Contains(requestType);
        }