public class hello : HttpTaskAsyncHandler, IReadOnlySessionState { public IFetchServise fetch { get; set; } public override async Task ProcessRequestAsync(HttpContext context) { context.Response.ContentType = "text/plain"; var name = await fetch.RandomFortuneAsync(); context.Response.Write(name); } }