3 instantiations of CustomAwaitable
BasicWebSite (3)
Controllers\AsyncActionsController.cs (3)
130return new CustomAwaitable<Message>( 142return new CustomAwaitable<IActionResult>(SimulateDelayMilliseconds, Content(message)); 152return new CustomAwaitable<ContentResult>(SimulateDelayMilliseconds, Content(message));
6 references to CustomAwaitable
BasicWebSite (6)
Controllers\AsyncActionsController.cs (6)
128public CustomAwaitable<Message> CustomAwaitableOfObjectAction(string message) 135public CustomAwaitable<Message> CustomAwaitableOfObjectExceptionAction(string message) 140public CustomAwaitable<IActionResult> CustomAwaitableOfIActionResultAction(string message) 145public CustomAwaitable<IActionResult> CustomAwaitableOfIActionResultExceptionAction(string message) 150public CustomAwaitable<ContentResult> CustomAwaitableOfContentResultAction(string message) 155public CustomAwaitable<ContentResult> CustomAwaitableOfContentResultExceptionAction(string message)