[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWebRequestHandler

Interface IWebRequestHandler

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Defines an interface for handling web requests asynchronously. This interface provides a way to send GET requests to a specified URI.

public interface IWebRequestHandler

Methods

GetAsync(string)

Sends a GET request to the specified URI asynchronously.

Task<WebRequestResult> GetAsync(string requestUri)

Parameters

requestUri string

The URI to send the GET request to.

Returns

System.Threading.Tasks.Task<TResult><WebRequestResult>

A System.Threading.Tasks.Task<TResult> representing the asynchronous operation. The System.Threading.Tasks.Task<TResult> will contain a WebRequestResult object representing the result of the web request.