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
Copy file name to clipboardExpand all lines: dotnet/src/webdriver/Response.cs
+3-41Lines changed: 3 additions & 41 deletions
Original file line number
Diff line number
Diff line change
@@ -40,24 +40,6 @@ public class Response
40
40
Converters={newResponseValueJsonConverter()}// we still need it to make `Object` as `Dictionary`
41
41
};
42
42
43
-
/// <summary>
44
-
/// Initializes a new instance of the <see cref="Response"/> class
45
-
/// </summary>
46
-
[Obsolete("Set all values using the Response(string, object, WebDriverResult) constructor instead. This constructor will be removed in Selenium 4.30")]
47
-
publicResponse()
48
-
{
49
-
}
50
-
51
-
/// <summary>
52
-
/// Initializes a new instance of the <see cref="Response"/> class
53
-
/// </summary>
54
-
/// <param name="sessionId">Session ID in use</param>
55
-
[Obsolete("Set all values using the Response(string, object, WebDriverResult) constructor instead. This constructor will be removed in Selenium 4.30")]
56
-
publicResponse(SessionId?sessionId)
57
-
{
58
-
this.SessionId=sessionId?.ToString();
59
-
}
60
-
61
43
/// <summary>
62
44
/// Initializes a new instance of the <see cref="Response"/> class
63
45
/// </summary>
@@ -66,11 +48,9 @@ public Response(SessionId? sessionId)
66
48
/// <param name="status">The WebDriver result status of the response.</param>
0 commit comments