I have implemented IOperationInvoker to customize the WCF invokation. In Invoke method I want to access custom attributes of the method which is invoked by OperationInvoker. I have written the following code. But, it's not giving the custom attributes which are specified on that method.

public MyOperationInvoker(IOperationInvoker operationInvoker, DispatchOperation dispatchOperation)
{
            this.operationInvoker = operationInvoker;
}

public object Invoke(object instance, object[] inputs, out object[] outputs)
{
   MethodInfo mInfo=(MethodInfo)this.operationInvoker.GetType().GetProperty("Method").
                     GetValue(this.operationInvoker, null);
object[] objCustomAttributes = methodInfo.GetCustomAttributes(typeof(MyAttribute), true);

}
link|improve this question

68% accept rate
feedback

1 Answer

this question seems a bit old, not sure I violate any rules ... but I'll answer from my own exp

At runtime, the OperationInvoker has type SyncMethodInvoker which contains the MethodInfo. But due to its protection level, we can't cast the OperationInvoker to SyncMethodInvoker. However, there's a MethodInfo object in the OperationDescription. So what I usually do is pass the MethodInfo in the IOperationBehavior.ApplyDispatchBehavior method into the constructor of CustomOperationInvoker Below is the code:

public class OperationBehaviourInterceptor : IOperationBehavior
{
  public void ApplyDispatchBehavior(OperationDescription operationDescription, System.ServiceModel.Dispatcher.DispatchOperation dispatchOperation)
  {
    MethodInfo currMethodInfo = operationDescription.SyncMethod;

    var oldInvoker = dispatchOperation.Invoker;
    dispatchOperation.Invoker = new OperationInvokerBase(oldInvoker,currMethodInfo);
  }

  // other method
}

public class CustomOperationInvoker : IOperationInvoker
{
  private IOperationInvoker oldInvoker;
  private MethodInfo methodInfo;
  public CustomOperationInvoker(IOperationInvoker oldOperationInvoker, MethodInfo info)
  {
    this.oldInvoker = oldOperationInvoker;
    this.methodInfo = info;
  }

  // then you can access it 
}

Hope this helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.