13 lines
301 B
C#
13 lines
301 B
C#
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace RhSolutions.QueryModifiers;
|
|
|
|
public class BypassQueryModifier : IProductQueryModifier
|
|
{
|
|
public bool TryQueryModify(IQueryCollection collection, out QueryString queryString)
|
|
{
|
|
queryString = QueryString.Empty;
|
|
return false;
|
|
}
|
|
}
|