在RequestInterceptor中获取OperationName

时间:2014-08-18 12:11:32

标签: c# .net wcf

我已经实现了一个自定义请求者拦截器,用于验证请求,类似于下面的内容。我试图在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

    }
}

0 个答案:

没有答案