/ Published in: C#
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
[InheritedExport] public interface IOperationBehaviorExtender { string Action { get; } bool BeforeInvoke(string action, object[] inputs, out string faultMessage); void AfterInvoke(string action, object[] inputs, ref object[] outputs, ref object returnValue); bool ValidateBeforeCall(string action, object[] inputs, out string message); void AfterCall(string action, object[] outputs, object returnValue, object correlationState); }