We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce59d87 commit 051862fCopy full SHA for 051862f
dotnet/src/webdriver/BiDi/Storage/DeleteCookiesCommand.cs
@@ -26,6 +26,11 @@ internal sealed class DeleteCookiesCommand(DeleteCookiesCommandParameters @param
26
27
internal sealed record DeleteCookiesCommandParameters(CookieFilter? Filter, PartitionDescriptor? Partition) : CommandParameters;
28
29
-public sealed record DeleteCookiesOptions : GetCookiesOptions;
+public sealed record DeleteCookiesOptions : CommandOptions
30
+{
31
+ public CookieFilter? Filter { get; set; }
32
+
33
+ public PartitionDescriptor? Partition { get; set; }
34
+}
35
36
public sealed record DeleteCookiesResult(PartitionKey PartitionKey) : EmptyResult;
0 commit comments