我正在尝试从我正在编写的自定义OnAuthorization()
的{{1}}方法中访问第一个配置的媒体类型格式化程序。但是,当我访问配置的“Formatters”属性时,我得到AuthorizationFilterAttribute
。
不起作用:
MissingMethodException
throws System.MissingMethodException - 找不到方法:'System.Net.Http.Formatting.MediaTypeFormatterCollection System.Web.Http.HttpConfiguration.get_Formatters()'。
使用:
public override void OnAuthorization(HttpActionContext actionContext)
{
// Perform authentication.
if (authenticationFailed)
actionContext.Response = new HttpResponseMessage(HttpStatusCode.Unauthorized)
{
Content = new ObjectContent<MyReturnType>(new MyReturnType(), actionContext.ControllerContext.Configuration.Formatters.First())
};
}
但是,因为这个属性是在一个正在多个项目中使用的库中定义的,并且某些项目使用XML而不是JSON作为它们的“默认”媒体类型转换器,所以我不能使用第二种方法因为我不知道返回数据的格式是什么。
用public override void OnAuthorization(HttpActionContext actionContext)
{
// Perform authentication.
if (authenticationFailed)
actionContext.Response = new HttpResponseMessage(HttpStatusCode.Unauthorized)
{
Content = new ObjectContent<MyReturnType>(new MyReturnType(), new JsonMediaTypeFormatter())
};
}
替换actionContext.ControllerContext.Configuration.Formatters.First()
也会导致异常。
我使用相同的方法在自定义GlobalConfiguration.Configuration.Formatters.First()
中访问“默认”媒体类型格式化程序,没有任何问题,为什么这不能在ActionFilterAttribute
中使用?
有谁知道如何从AuthorizationFilterAttribute
?
注意:我意识到我可以指定媒体类型格式化程序作为属性初始化的一部分使用,但我希望我不必这样做,我只需访问配置的媒体类型格式化程序。我非常好奇为什么这不起作用。
注意2:正在使用的System.Web.Http DLL的版本是4.0。
答案 0 :(得分:7)
想出来,结果发现配置文件中缺少一个程序集绑定:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>