vknet_vk/VkNet/Infrastructure/Authorization/ImplicitFlow/IAuthorizationFormHtmlParser.cs
Инютин Максим Николаевич f6901f2aa5 #1564 Проставляет XMLDOC
2023-07-29 17:55:07 +03:00

19 lines
No EOL
555 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Threading;
using System.Threading.Tasks;
namespace VkNet.Infrastructure.Authorization.ImplicitFlow;
/// <summary>
/// Authorization Form Html Parser
/// </summary>
public interface IAuthorizationFormHtmlParser
{
/// <summary>
/// Get form data
/// </summary>
/// <param name="url">URL</param>
/// <param name="token">Токен отмены операции</param>
/// <returns>Результат с данными формы</returns>
Task<VkHtmlFormResult> GetFormAsync(Uri url, CancellationToken token = default);
}