APIコントローラーに投稿される次のようなxmlがあるとします。
<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.
}
手動で逆シリアル化せずにどうすればそれを行うことができますか?