Skip to content

Commit

Permalink
Fixing XML documentation comment warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Jan 30, 2014
1 parent 9c24fb7 commit bbf9df7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions dotnet/src/webdriver/Chrome/ChromeOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,9 @@ public void AddLocalStatePreference(string preferenceName, object preferenceValu
/// thrown when attempting to add a capability for which there is already a type safe option, or
/// when <paramref name="capabilityName"/> is <see langword="null"/> or the empty string.
/// </exception>
/// <remarks>Calling <see cref="AddAdditionalCapability"/> where <paramref name="capabilityName"/>
/// has already been added will overwrite the existing value with the new value in <paramref name="capabilityValue"/>.
/// <remarks>Calling <see cref="AddAdditionalCapability(System.String, System.Object)"/>
/// where <paramref name="capabilityName"/> has already been added will overwrite the
/// existing value with the new value in <paramref name="capabilityValue"/>.
/// Also, by default, calling this method adds capabilities to the options object passed to
/// chromedriver.exe.</remarks>
public void AddAdditionalCapability(string capabilityName, object capabilityValue)
Expand All @@ -406,8 +407,9 @@ public void AddAdditionalCapability(string capabilityName, object capabilityValu
/// thrown when attempting to add a capability for which there is already a type safe option, or
/// when <paramref name="capabilityName"/> is <see langword="null"/> or the empty string.
/// </exception>
/// <remarks>Calling <see cref="AddAdditionalCapability"/> where <paramref name="capabilityName"/>
/// has already been added will overwrite the existing value with the new value in <paramref name="capabilityValue"/></remarks>
/// <remarks>Calling <see cref="AddAdditionalCapability(System.String, System.Object, System.Boolean)"/>
/// where <paramref name="capabilityName"/> has already been added will overwrite the
/// existing value with the new value in <paramref name="capabilityValue"/></remarks>
public void AddAdditionalCapability(string capabilityName, object capabilityValue, bool isGlobalCapability)
{
if (capabilityName == ChromeOptions.Capability ||
Expand Down

0 comments on commit bbf9df7

Please sign in to comment.