Skip to content

Commit

Permalink
Adding missing documentation comments to suppress warnings in .NET
Browse files Browse the repository at this point in the history
No functional changes.
  • Loading branch information
jimevans committed Oct 7, 2015
1 parent 6dda716 commit 4e70650
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dotnet/src/webdriver/DriverService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,17 @@ protected virtual string CommandLineArguments
get { return string.Format(CultureInfo.InvariantCulture, "--port={0}", this.driverServicePort); }
}

/// <summary>
/// Gets a value indicating the time to wait for an initial connection before timing out.
/// </summary>
protected virtual TimeSpan InitialConnectionTimeout
{
get { return TimeSpan.FromSeconds(20); }
}

/// <summary>
/// Gets a value indicating whether to ignore the absence of a status end point.
/// </summary>
protected virtual bool IgnoreMissingStatusEndPoint
{
get { return false; }
Expand Down
3 changes: 3 additions & 0 deletions dotnet/src/webdriver/Remote/CommandInfoRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ protected CommandInfoRepository()
}
#endregion

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

#region Public methods
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ public W3CWireProtocolCommandInfoRepository()
}
#endregion

/// <summary>
/// Gets the level of the W3C WebDriver specification that this repository supports.
/// </summary>
public override int SpecificationLevel
{
get { return 1; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ public WebDriverWireProtocolCommandInfoRepository()
}
#endregion

/// <summary>
/// Gets the level of the W3C WebDriver specification that this repository supports.
/// </summary>
public override int SpecificationLevel
{
get { return 0; }
Expand Down

0 comments on commit 4e70650

Please sign in to comment.