假设我有一个类似以下的 xml,它被发布到 api 控制器:
<request>
<header><api_key>Somekey</api_key></header>
</request>
如果我想在自定义 AuthorizationFilterAttribute 中验证 api 键,如下所示:
public override void OnAuthorization(HttpActionContext actionContext)
{
// Deserialize the posted message and validate the api key.
}
我怎样才能做到这一点而不必手动反序列化它?