F# 在构建WCF时遇到的问题
定义OperationContract时缺少参数
[<ServiceContract(Namespace="http://www.xxxx.com.cn")>] type IEightBall = [<OperationContract>] abstract member ObtainAnswerToQuestion: userQuestion:string -> string
注意userQuestion必须显示定义
待续…
定义OperationContract时缺少参数
[<ServiceContract(Namespace="http://www.xxxx.com.cn")>]
type IEightBall =
[<OperationContract>]
abstract member ObtainAnswerToQuestion: userQuestion:string -> string
注意userQuestion必须显示定义
待续…