Files
PostManCloneApp/PostmanCloneLibrary/IApiAccess.cs
2024-06-05 11:34:55 +02:00

11 lines
380 B
C#

namespace PostmanCloneLibrary
{
public interface IApiAccess
{
Task<string> CallApiAsync(string url, string content, HttpAction action = HttpAction.GET, bool formaOutput = true);
Task<string> CallApiAsync(string url, HttpContent? content = null, HttpAction action = HttpAction.GET, bool formaOutput = true);
bool IsValidUrl(string url);
}
}