I have a service contract as follow
[ServiceContract]
public interface IService
{
[MyCustomBehavior]
[OperationContract]
void MyOperation();
}
The question is whether a call to
new ChannelFactory<IService>(myBinding, myUri)
Will implicitly add MyCustomBehavior before the call, just by virtue of me passing the IService to the ChannelFactory or will I need to dig deeper and explicitly set MyCustomBehavior to the MyOperation operation?
I will suggest you to read this first.
Configuring and Extending the Runtime with Behaviors