我已经实现了一个自定义请求者拦截器,用于验证请求,类似于下面的内容。我试图在ProcessRequest中获取操作名称而无法获取。
任何人都可以告诉我如何在这里获取操作名称?
public class SampleInterceptor: Microsoft.ServiceModel.Web.RequestInterceptor
{
public SampleInterceptor() : base(true)
{
}
public override void ProcessRequest(ref System.ServiceModel.Channels.RequestContext requestContext)
{
//need the operation name here to authenticate
}
}