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 2ff92c8 commit 7f60880Copy full SHA for 7f60880
dotnet/src/webdriver/BiDi/Script/RemoteValue.cs
@@ -99,9 +99,9 @@ public abstract record RemoteValue
99
}
100
101
102
-public sealed record NumberRemoteValue([property: JsonConverter(typeof(SpecialNumberConverter))] double Value) : PrimitiveProtocolRemoteValue;
+public abstract record PrimitiveProtocolRemoteValue : RemoteValue;
103
104
-public sealed record NumberRemoteValue(double Value) : PrimitiveProtocolRemoteValue;
+public sealed record NumberRemoteValue([property: JsonConverter(typeof(SpecialNumberConverter))] double Value) : PrimitiveProtocolRemoteValue;
105
106
public sealed record BooleanRemoteValue(bool Value) : PrimitiveProtocolRemoteValue;
107
0 commit comments