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 37f6708 commit 1cd2872Copy full SHA for 1cd2872
dotnet/src/webdriver/Response.cs
@@ -121,17 +121,17 @@ public static Response FromJson(string value)
121
/// <summary>
122
/// Gets or sets the value from JSON.
123
/// </summary>
124
- public object? Value { get; init; }
+ public object? Value { get; }
125
126
127
/// Gets or sets the session ID.
128
129
- public string? SessionId { get; init; }
+ public string? SessionId { get; }
130
131
132
/// Gets or sets the status value of the response.
133
134
- public WebDriverResult Status { get; init; }
+ public WebDriverResult Status { get; }
135
136
137
/// Returns a new <see cref="Response"/> from a JSON-encoded string.
0 commit comments