Skip to content

Commit 4e70650

Browse files
committed
Adding missing documentation comments to suppress warnings in .NET
No functional changes.
1 parent 6dda716 commit 4e70650

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

dotnet/src/webdriver/DriverService.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,17 @@ protected virtual string CommandLineArguments
157157
get { return string.Format(CultureInfo.InvariantCulture, "--port={0}", this.driverServicePort); }
158158
}
159159

160+
/// <summary>
161+
/// Gets a value indicating the time to wait for an initial connection before timing out.
162+
/// </summary>
160163
protected virtual TimeSpan InitialConnectionTimeout
161164
{
162165
get { return TimeSpan.FromSeconds(20); }
163166
}
164167

168+
/// <summary>
169+
/// Gets a value indicating whether to ignore the absence of a status end point.
170+
/// </summary>
165171
protected virtual bool IgnoreMissingStatusEndPoint
166172
{
167173
get { return false; }

dotnet/src/webdriver/Remote/CommandInfoRepository.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ protected CommandInfoRepository()
4343
}
4444
#endregion
4545

46+
/// <summary>
47+
/// Gets the level of the W3C WebDriver specification that this repository supports.
48+
/// </summary>
4649
public abstract int SpecificationLevel { get; }
4750

4851
#region Public methods

dotnet/src/webdriver/Remote/W3CWireProtocolCommandInfoRepository.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ public W3CWireProtocolCommandInfoRepository()
4040
}
4141
#endregion
4242

43+
/// <summary>
44+
/// Gets the level of the W3C WebDriver specification that this repository supports.
45+
/// </summary>
4346
public override int SpecificationLevel
4447
{
4548
get { return 1; }

dotnet/src/webdriver/Remote/WebDriverWireProtocolCommandInfoRepository.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ public WebDriverWireProtocolCommandInfoRepository()
4040
}
4141
#endregion
4242

43+
/// <summary>
44+
/// Gets the level of the W3C WebDriver specification that this repository supports.
45+
/// </summary>
4346
public override int SpecificationLevel
4447
{
4548
get { return 0; }

0 commit comments

Comments
 (0)