You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
internal record CreateCommandParameters(ContextTypeType):CommandParameters
30
-
{
31
-
publicBrowsingContext?ReferenceContext{get;set;}
32
-
33
-
publicbool?Background{get;set;}
34
-
35
-
publicBrowser.UserContext?UserContext{get;set;}
36
-
}
29
+
internal record CreateCommandParameters(ContextTypeType,BrowsingContext?ReferenceContext,bool?Background,Browser.UserContext?UserContext):CommandParameters;
internal record LocateNodesCommandParameters(BrowsingContextContext,LocatorLocator,long?MaxNodeCount,Script.SerializationOptions?SerializationOptions,IEnumerable<Script.ISharedReference>?StartNodes):CommandParameters;
internal record PrintCommandParameters(BrowsingContextContext,bool?Background,PrintMargin?Margin,PrintOrientation?Orientation,PrintPage?Page,IEnumerable<PrintPageRange>?PageRanges,double?Scale,bool?ShrinkToFit):CommandParameters;
internal record AddInterceptCommandParameters(IEnumerable<InterceptPhase>Phases,IEnumerable<BrowsingContext.BrowsingContext>?Contexts,IEnumerable<UrlPattern>?UrlPatterns):CommandParameters;
internal record ContinueRequestCommandParameters(RequestRequest):CommandParameters
31
-
{
32
-
publicBytesValue?Body{get;set;}
33
-
34
-
publicIEnumerable<CookieHeader>?Cookies{get;set;}
35
-
36
-
publicIEnumerable<Header>?Headers{get;set;}
37
-
38
-
publicstring?Method{get;set;}
39
-
40
-
publicstring?Url{get;set;}
41
-
}
30
+
internal record ContinueRequestCommandParameters(RequestRequest,BytesValue?Body,IEnumerable<CookieHeader>?Cookies,IEnumerable<Header>?Headers,string?Method,string?Url):CommandParameters;
42
31
43
32
public record ContinueRequestOptions :CommandOptions
internal record ContinueResponseCommandParameters(RequestRequest,IEnumerable<SetCookieHeader>?Cookies,IEnumerable<AuthCredentials>?Credentials,IEnumerable<Header>?Headers,string?ReasonPhrase,long?StatusCode):CommandParameters;
42
31
43
32
public record ContinueResponseOptions :CommandOptions
0 commit comments