aspnetcore/src/Microsoft.AspNetCore.Rewrite/RuleAbstraction/RuleTermination.cs

15 lines
267 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Microsoft.AspNetCore.Rewrite.RuleAbstraction
{
public enum RuleTerminiation
{
Continue,
ResponseComplete,
StopRules
}
}