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 CaptureScreenshotCommandParameters(BrowsingContextContext,Origin?Origin,ImageFormat?Format,ClipRectangle?Clip):CommandParameters;
28
+
internal record CaptureScreenshotCommandParameters(BrowsingContextContext,CaptureScreenshotOptions.ScreenshotOrigin?Origin,ImageFormat?Format,ClipRectangle?Clip):CommandParameters;
29
29
30
30
public record CaptureScreenshotOptions :CommandOptions
31
31
{
32
-
publicOrigin?Origin{get;set;}
32
+
publicScreenshotOrigin?Origin{get;set;}
33
33
34
34
publicImageFormat?Format{get;set;}
35
35
36
36
publicClipRectangle?Clip{get;set;}
37
-
}
38
37
39
-
publicenumOrigin
40
-
{
41
-
Viewport,
42
-
Document
38
+
publicenumScreenshotOrigin
39
+
{
40
+
Viewport,
41
+
Document
42
+
}
43
43
}
44
44
45
45
publicrecordstructImageFormat(stringType)
@@ -48,14 +48,13 @@ public record struct ImageFormat(string Type)
0 commit comments