/// <summary> /// Inserts a request in the queue and immediately returns without waiting for a response. /// It will return the token string for this request, that can be queried later on for a response (using Await Response). /// </summary> public static string RequestAsync(TRequest request) { return(IntegrationManager.RequestAsync <TRequest, TResponse>(request)); }