@@ -18,8 +18,8 @@ public static partial class ApacheModRewriteOptionsExtensions
18
18
}
19
19
public static partial class IISUrlRewriteOptionsExtensions
20
20
{
21
- public static Microsoft . AspNetCore . Rewrite . RewriteOptions AddIISUrlRewrite ( this Microsoft . AspNetCore . Rewrite . RewriteOptions options , Microsoft . Extensions . FileProviders . IFileProvider fileProvider , string filePath ) { throw null ; }
22
- public static Microsoft . AspNetCore . Rewrite . RewriteOptions AddIISUrlRewrite ( this Microsoft . AspNetCore . Rewrite . RewriteOptions options , System . IO . TextReader reader ) { throw null ; }
21
+ public static Microsoft . AspNetCore . Rewrite . RewriteOptions AddIISUrlRewrite ( this Microsoft . AspNetCore . Rewrite . RewriteOptions options , Microsoft . Extensions . FileProviders . IFileProvider fileProvider , string filePath , bool useNativeIISServerVariables = true ) { throw null ; }
22
+ public static Microsoft . AspNetCore . Rewrite . RewriteOptions AddIISUrlRewrite ( this Microsoft . AspNetCore . Rewrite . RewriteOptions options , System . IO . TextReader reader , bool useNativeIISServerVariables = true ) { throw null ; }
23
23
}
24
24
public partial interface IRule
25
25
{
@@ -366,7 +366,7 @@ public virtual void ApplyRule(Microsoft.AspNetCore.Rewrite.RewriteContext contex
366
366
public partial class InputParser
367
367
{
368
368
public InputParser ( ) { }
369
- public InputParser ( Microsoft . AspNetCore . Rewrite . Internal . IISUrlRewrite . IISRewriteMapCollection rewriteMaps ) { }
369
+ public InputParser ( Microsoft . AspNetCore . Rewrite . Internal . IISUrlRewrite . IISRewriteMapCollection rewriteMaps , bool useNativeIISServerVariables ) { }
370
370
public Microsoft . AspNetCore . Rewrite . Internal . Pattern ParseInputString ( string testString ) { throw null ; }
371
371
public Microsoft . AspNetCore . Rewrite . Internal . Pattern ParseInputString ( string testString , Microsoft . AspNetCore . Rewrite . Internal . IISUrlRewrite . UriMatchPart uriMatchPart ) { throw null ; }
372
372
}
@@ -443,7 +443,7 @@ public static partial class RewriteTags
443
443
}
444
444
public static partial class ServerVariables
445
445
{
446
- public static Microsoft . AspNetCore . Rewrite . Internal . PatternSegment FindServerVariable ( string serverVariable , Microsoft . AspNetCore . Rewrite . Internal . ParserContext context , Microsoft . AspNetCore . Rewrite . Internal . IISUrlRewrite . UriMatchPart uriMatchPart ) { throw null ; }
446
+ public static Microsoft . AspNetCore . Rewrite . Internal . PatternSegment FindServerVariable ( string serverVariable , Microsoft . AspNetCore . Rewrite . Internal . ParserContext context , Microsoft . AspNetCore . Rewrite . Internal . IISUrlRewrite . UriMatchPart uriMatchPart , bool useNativeIISServerVariables ) { throw null ; }
447
447
}
448
448
public partial class UriMatchCondition : Microsoft . AspNetCore . Rewrite . Internal . IISUrlRewrite . Condition
449
449
{
@@ -457,7 +457,7 @@ public enum UriMatchPart
457
457
public partial class UrlRewriteFileParser
458
458
{
459
459
public UrlRewriteFileParser ( ) { }
460
- public System . Collections . Generic . IList < Microsoft . AspNetCore . Rewrite . Internal . IISUrlRewrite . IISUrlRewriteRule > Parse ( System . IO . TextReader reader ) { throw null ; }
460
+ public System . Collections . Generic . IList < Microsoft . AspNetCore . Rewrite . Internal . IISUrlRewrite . IISUrlRewriteRule > Parse ( System . IO . TextReader reader , bool useNativeIISServerVariables ) { throw null ; }
461
461
}
462
462
public partial class UrlRewriteRuleBuilder
463
463
{
@@ -491,11 +491,6 @@ public partial class HeaderSegment : Microsoft.AspNetCore.Rewrite.Internal.Patte
491
491
public HeaderSegment ( string header ) { }
492
492
public override string Evaluate ( Microsoft . AspNetCore . Rewrite . RewriteContext context , Microsoft . AspNetCore . Rewrite . Internal . BackReferenceCollection ruleBackReferences , Microsoft . AspNetCore . Rewrite . Internal . BackReferenceCollection conditionBackReferences ) { throw null ; }
493
493
}
494
- public partial class IISServerVariableSegment : Microsoft . AspNetCore . Rewrite . Internal . PatternSegment
495
- {
496
- public IISServerVariableSegment ( string variableName , System . Func < Microsoft . AspNetCore . Rewrite . Internal . PatternSegment > fallbackThunk ) { }
497
- public override string Evaluate ( Microsoft . AspNetCore . Rewrite . RewriteContext context , Microsoft . AspNetCore . Rewrite . Internal . BackReferenceCollection ruleBackReferences , Microsoft . AspNetCore . Rewrite . Internal . BackReferenceCollection conditionBackReferences ) { throw null ; }
498
- }
499
494
public partial class IsHttpsModSegment : Microsoft . AspNetCore . Rewrite . Internal . PatternSegment
500
495
{
501
496
public IsHttpsModSegment ( ) { }
0 commit comments