Skip to content

Commit 7968096

Browse files
[dotnet] Make HttpRequestData properties settable (#9456)
These fields need to me modifiable in some way for Request transformation to work properly Co-authored-by: jimevans <[email protected]>
1 parent f10cb89 commit 7968096

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dotnet/src/webdriver/HttpRequestData.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,22 @@ public class HttpRequestData
3030
/// <summary>
3131
/// Gets the method of the HTTP request.
3232
/// </summary>
33-
public string Method { get; internal set; }
33+
public string Method { get; set; }
3434

3535
/// <summary>
3636
/// Gets the URL of the HTTP request.
3737
/// </summary>
38-
public string Url { get; internal set; }
38+
public string Url { get; set; }
3939

4040
/// <summary>
4141
/// Gets the POST data of the HTTP request.
4242
/// </summary>
43-
public string PostData { get; internal set; }
43+
public string PostData { get; set; }
4444

4545
/// <summary>
4646
/// Gets the headers of the HTTP request.
4747
/// </summary>
48-
public Dictionary<string, string> Headers { get; internal set; }
48+
public Dictionary<string, string> Headers { get; set; }
4949

5050
/// <summary>
5151
/// Gets the ID of the HTTP request.

0 commit comments

Comments
 (0)