Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ public async Task SendKeyEventAsync(string key, CancellationToken cancellationTo
}

/// <summary>
/// Send text to device asynchronously. Doesn't support Russian.
/// Send text to device asynchronously. Doesn't support Unicode.
/// </summary>
/// <param name="text">The text to send.</param>
/// <param name="cancellationToken">A <see cref="CancellationToken"/> which can be used to cancel the asynchronous operation.</param>
Expand Down
2 changes: 1 addition & 1 deletion AdvancedSharpAdbClient/DeviceCommands/DeviceClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ public void SendKeyEvent(string key)
}

/// <summary>
/// Send text to device. Doesn't support Russian.
/// Send text to device. Doesn't support Unicode.
/// </summary>
/// <param name="text">The text to send.</param>
public void SendText(string text)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public static Task SendKeyEventAsync(this IAdbClient client, DeviceData device,
new DeviceClient(client, device).SendKeyEventAsync(key, cancellationToken);

/// <summary>
/// Asynchronously send text to device. Doesn't support Russian.
/// Asynchronously send text to device. Doesn't support Unicode.
/// </summary>
/// <param name="client">The <see cref="IAdbClient"/> to use when executing the command.</param>
/// <param name="device">The device on which to run the command.</param>
Expand Down
2 changes: 1 addition & 1 deletion AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public static void SendKeyEvent(this IAdbClient client, DeviceData device, strin
new DeviceClient(client, device).SendKeyEvent(key);

/// <summary>
/// Send text to device. Doesn't support Russian.
/// Send text to device. Doesn't support Unicode.
/// </summary>
/// <param name="client">An instance of a class that implements the <see cref="IAdbClient"/> interface.</param>
/// <param name="device">The device on which to clear the input text.</param>
Expand Down
4 changes: 2 additions & 2 deletions AdvancedSharpAdbClient/DeviceCommands/Models/Element.cs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public void Click()
}

/// <summary>
/// Send text to device. Doesn't support Russian.
/// Send text to device. Doesn't support Unicode.
/// </summary>
/// <param name="text">The text to send.</param>
public void SendText(string text)
Expand Down Expand Up @@ -313,7 +313,7 @@ public async Task ClickAsync(CancellationToken cancellationToken = default)
}

/// <summary>
/// Asynchronously send text to device. Doesn't support Russian.
/// Asynchronously send text to device. Doesn't support Unicode.
/// </summary>
/// <param name="text">The text to send.</param>
/// <param name="cancellationToken">A <see cref="CancellationToken"/> which can be used to cancel the asynchronous operation.</param>
Expand Down
Loading