Skip to content

Commit

Permalink
fix: XML docs fixes (#785)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dor-bl authored May 19, 2024
1 parent afd78a8 commit 278b2d6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/Appium.Net/Appium/AppiumCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,10 @@ internal static ICommandExecutor Merge(ICommandExecutor repo)

/// <summary>
/// Constructor
/// </summary>
/// <param name="commandType">type of command (get/post/delete)</param>
/// <param name="command">Command</param>
/// <param name="apiEndpoint">api endpoint</param>
/// <summary>
/// </summary>
public AppiumCommand(string commandType, string command, string apiEndpoint)
{
CommandType = commandType;
Expand Down
7 changes: 5 additions & 2 deletions src/Appium.Net/Appium/Interfaces/IHidesKeyboard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@

namespace OpenQA.Selenium.Appium.Interfaces
{
/// <summary>
/// Represents an interface for interacting with device keyboards.
/// </summary>
public interface IHidesKeyboard
{
/// <summary>
Expand All @@ -37,9 +40,9 @@ public interface IHidesKeyboard
void HideKeyboard(string strategy, string key);

/// <summary>
/// Whether or not the soft keyboard is shown
/// Determines whether the soft keyboard is currently shown.
/// </summary>
/// <returns><see cref="true"/> if keyboard is shown, <see cref="false"/> if not.</returns>
/// <returns>True if the keyboard is shown; otherwise, false.</returns>
bool IsKeyboardShown();
}
}
3 changes: 3 additions & 0 deletions src/Appium.Net/Appium/Interfaces/IHidesKeyboardWithKeyName.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@

namespace OpenQA.Selenium.Appium.Interfaces
{
/// <summary>
/// Represents an interface for hiding the keyboard with a specific key name.
/// </summary>
public interface IHidesKeyboardWithKeyName : IHidesKeyboard
{
/// <summary>
Expand Down

0 comments on commit 278b2d6

Please sign in to comment.