Skip to content

Commit

Permalink
Add XML doc to network implementation constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
RenderMichael committed Feb 1, 2025
1 parent f410ed4 commit f063bf0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions dotnet/src/webdriver/DevTools/v130/V130Network.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public class V130Network : DevTools.Network
/// </summary>
/// <param name="network">The adapter for the Network domain.</param>
/// <param name="fetch">The adapter for the Fetch domain.</param>
/// <exception cref="ArgumentNullException">If <paramref name="network"/> or <paramref name="fetch"/> are <see langword="null"/>.</exception>
public V130Network(NetworkAdapter network, FetchAdapter fetch)
{
this.network = network ?? throw new ArgumentNullException(nameof(network));
Expand Down
1 change: 1 addition & 0 deletions dotnet/src/webdriver/DevTools/v131/V131Network.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public class V131Network : DevTools.Network
/// </summary>
/// <param name="network">The adapter for the Network domain.</param>
/// <param name="fetch">The adapter for the Fetch domain.</param>
/// <exception cref="ArgumentNullException">If <paramref name="network"/> or <paramref name="fetch"/> are <see langword="null"/>.</exception>
public V131Network(NetworkAdapter network, FetchAdapter fetch)
{
this.network = network ?? throw new ArgumentNullException(nameof(network));
Expand Down
1 change: 1 addition & 0 deletions dotnet/src/webdriver/DevTools/v132/V132Network.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public class V132Network : DevTools.Network
/// </summary>
/// <param name="network">The adapter for the Network domain.</param>
/// <param name="fetch">The adapter for the Fetch domain.</param>
/// <exception cref="ArgumentNullException">If <paramref name="network"/> or <paramref name="fetch"/> are <see langword="null"/>.</exception>
public V132Network(NetworkAdapter network, FetchAdapter fetch)
{
this.network = network ?? throw new ArgumentNullException(nameof(network));
Expand Down
1 change: 1 addition & 0 deletions dotnet/src/webdriver/DevTools/v85/V85Network.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public class V85Network : DevTools.Network
/// </summary>
/// <param name="network">The adapter for the Network domain.</param>
/// <param name="fetch">The adapter for the Fetch domain.</param>
/// <exception cref="ArgumentNullException">If <paramref name="network"/> or <paramref name="fetch"/> are <see langword="null"/>.</exception>
public V85Network(NetworkAdapter network, FetchAdapter fetch)
{
this.network = network ?? throw new ArgumentNullException(nameof(network));
Expand Down

0 comments on commit f063bf0

Please sign in to comment.