|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.AspNetCore.Rewrite.PatternSegments;
internal sealed class ConditionMatchSegment : PatternSegment
{
private readonly int _index;
public ConditionMatchSegment(int index)
{
_index = index;
}
public override string? Evaluate(RewriteContext context, BackReferenceCollection? ruleBackReferences, BackReferenceCollection? conditionBackReferences)
{
return conditionBackReferences?[_index];
}
}
|