web api相当于[return:MessageParameter(Name =" Result")]

时间:2017-10-18 03:21:25

标签: c# wcf asp.net-web-api web .net-4.5

我试图将我们的WFC项目转换为Web API。该要求包括不更改UI脚本/代码并保留其当前实现。现在,我在WFC中遇到了这个[return:MessageParameter(Name =" Result")]属性。 我想知道它是否在Web API中具有等效属性。 如果没有,那么你们如何在Web API中执行此操作?

    [OperationContract]
    [WebInvoke....etc..]
    [return: MessageParameter(Name = "Result")] //this line of code
    public Person GetCurrentUser(string token)
    {
        ....
    }

谢谢!

0 个答案:

没有答案