Update src/CommunityToolkit.Maui/Behaviors/AnimationBehavior.shared.cs

This commit is contained in:
Brandon Minnick 2023-11-09 10:11:36 -08:00 коммит произвёл GitHub
Родитель 84b6d68a47
Коммит 80953f2ddb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -25,6 +25,9 @@ public class AnimationBehavior : EventToCommandBehavior
/// <summary>
/// Gets the Command that allows the triggering of the animation.
/// </summary>
/// <remarks>
/// <see cref="AnimateCommand"/> has a <see cref="Type"/> of Command&lt;CancellationToken&gt; which requires a <see cref="CancellationToken"/> as a CommandParameter. See <see cref="Command{CancellationToken}"/> and <see cref="System.Windows.Input.ICommand.Execute(object)"/> for more information on passing a <see cref="CancellationToken"/> into <see cref="Command{T}"/> as a CommandParameter"
/// </remarks>
public Command<CancellationToken> AnimateCommand => (Command<CancellationToken>)GetValue(AnimateCommandProperty);
/// <summary>