在F#中创建一个动作以使用c#方法

时间:2013-09-14 13:09:13

标签: c# f#

我想在HttpListener的Owin实现中使用这个方法:

public static IDisposable Create(AppFunc app, IDictionary<string, object> properties)

AppFunc有这样的签名:

IDictionnary<string,Object> -> Task

我想创建一个任务,但它需要一个动作,我不知道如何在F#中完成它。 到目前为止我管理的最好的是使用此question中的代码:

module CsharpAction

open System

type Wrapper<'T>(f:'T -> unit) =
      member x.Invoke(a:'T) = f a

let makeAction (typ:Type) (f:'T -> unit) = 
    let actionType = typedefof<Action<_>>.MakeGenericType(typ)
    let wrapperType = typedefof<Wrapper<_>>.MakeGenericType(typ)
    let wrapped = Wrapper<_>(f)
    Delegate.CreateDelegate(actionType, wrapped, wrapped.GetType().GetMethod("Invoke"))

program.fs

let yymmdd1 (date:DateTime) = date.ToString("yy.MM.dd")
    let printSuccess = fun() -> printfn "Success %s" (yymmdd1 DateTime.Now )
    let actionTask = CsharpAction.makeAction (typeof<string>) (printSuccess)
    let mutable properties = Dictionary(dict [("fooKey", new Object())])


    let server = OwinServerFactory.Create((fun (props) -> new  Task(actionTask)) , properties)

然后它告诉我:这个表达式应该有类型动作但是这里有类型委托

我应该从F#向c#代码提供一个动作吗?或者我应该使用c#代码来为f#提供一些细节,例如等待委托代替行动?

我正在调整知识的极限,我确实感受到了痛苦。很确定,我必须学到很多东西,但如果你能帮我爬第一步那么好......

1 个答案:

答案 0 :(得分:6)

您不需要使用反射来在F#中创建委托。您可以完全抛弃代码的第一部分(您的CsharpAction模块)。

至于第二块代码,试试这个:

open System
open System.Collections.Generic
open System.Threading.Tasks

let yymmdd1 (date : DateTime) = date.ToString "yy.MM.dd"
let printSuccess () = printfn "Success %s" (yymmdd1 DateTime.Now)

let server =
    let actionTask = Action printSuccess
    let properties = Dictionary (dict ["fooKey", obj ()])
    OwinServerFactory.Create((fun props -> new Task (actionTask)), properties)