@@ -8,11 +8,12 @@ public class BrowsingContextNetworkModule(BrowsingContext context, NetworkModule
8
8
{
9
9
public async Task < Intercept > InterceptRequestAsync ( Func < BeforeRequestSentEventArgs , Task > handler , BrowsingContextAddInterceptOptions ? interceptOptions = null , SubscriptionOptions ? options = null )
10
10
{
11
- interceptOptions ??= new ( ) ;
11
+ AddInterceptOptions addInterceptOptions = new ( interceptOptions )
12
+ {
13
+ Contexts = [ context ]
14
+ } ;
12
15
13
- interceptOptions . Contexts = [ context ] ;
14
-
15
- var intercept = await networkModule . AddInterceptAsync ( [ InterceptPhase . BeforeRequestSent ] , interceptOptions ) . ConfigureAwait ( false ) ;
16
+ var intercept = await networkModule . AddInterceptAsync ( [ InterceptPhase . BeforeRequestSent ] , addInterceptOptions ) . ConfigureAwait ( false ) ;
16
17
17
18
await intercept . OnBeforeRequestSentAsync ( handler , new BrowsingContextsSubscriptionOptions ( options ) { Contexts = [ context ] } ) . ConfigureAwait ( false ) ;
18
19
@@ -21,11 +22,12 @@ public async Task<Intercept> InterceptRequestAsync(Func<BeforeRequestSentEventAr
21
22
22
23
public async Task < Intercept > InterceptResponseAsync ( Func < ResponseStartedEventArgs , Task > handler , BrowsingContextAddInterceptOptions ? interceptOptions = null , SubscriptionOptions ? options = null )
23
24
{
24
- interceptOptions ??= new ( ) ;
25
-
26
- interceptOptions . Contexts = [ context ] ;
25
+ AddInterceptOptions addInterceptOptions = new ( interceptOptions )
26
+ {
27
+ Contexts = [ context ]
28
+ } ;
27
29
28
- var intercept = await networkModule . AddInterceptAsync ( [ InterceptPhase . ResponseStarted ] , interceptOptions ) . ConfigureAwait ( false ) ;
30
+ var intercept = await networkModule . AddInterceptAsync ( [ InterceptPhase . ResponseStarted ] , addInterceptOptions ) . ConfigureAwait ( false ) ;
29
31
30
32
await intercept . OnResponseStartedAsync ( handler , new BrowsingContextsSubscriptionOptions ( options ) { Contexts = [ context ] } ) . ConfigureAwait ( false ) ;
31
33
@@ -34,11 +36,12 @@ public async Task<Intercept> InterceptResponseAsync(Func<ResponseStartedEventArg
34
36
35
37
public async Task < Intercept > InterceptAuthenticationAsync ( Func < AuthRequiredEventArgs , Task > handler , BrowsingContextAddInterceptOptions ? interceptOptions = null , SubscriptionOptions ? options = null )
36
38
{
37
- interceptOptions ??= new ( ) ;
38
-
39
- interceptOptions . Contexts = [ context ] ;
39
+ AddInterceptOptions addInterceptOptions = new ( interceptOptions )
40
+ {
41
+ Contexts = [ context ]
42
+ } ;
40
43
41
- var intercept = await networkModule . AddInterceptAsync ( [ InterceptPhase . AuthRequired ] , interceptOptions ) . ConfigureAwait ( false ) ;
44
+ var intercept = await networkModule . AddInterceptAsync ( [ InterceptPhase . AuthRequired ] , addInterceptOptions ) . ConfigureAwait ( false ) ;
42
45
43
46
await intercept . OnAuthRequiredAsync ( handler , new BrowsingContextsSubscriptionOptions ( options ) { Contexts = [ context ] } ) . ConfigureAwait ( false ) ;
44
47
0 commit comments