22 lines
564 B
Forth
22 lines
564 B
Forth
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
namespace FSharpWebSite.Controllers
|
|
|
|
open System
|
|
open System.Collections.Generic
|
|
open System.Linq
|
|
open System.Threading.Tasks
|
|
open Microsoft.AspNetCore.Mvc
|
|
|
|
type HomeController () =
|
|
inherit Controller()
|
|
|
|
member this.Index () =
|
|
this.View()
|
|
|
|
member this.AsyncAction () = async {
|
|
do! Async.Sleep 50
|
|
return this.Content("Action completed asynchronously")
|
|
}
|