Web Extensibility Download Part 2 - Making the Part discoverable


/ Published in: C#
Save to your folder(s)



Copy this code and paste it in your HTML
  1. [InheritedExport]
  2. public interface IOperationBehaviorExtender
  3. {
  4. string Action { get; }
  5. bool BeforeInvoke(string action, object[] inputs, out string faultMessage);
  6. void AfterInvoke(string action, object[] inputs, ref object[] outputs, ref object returnValue);
  7. bool ValidateBeforeCall(string action, object[] inputs, out string message);
  8. void AfterCall(string action, object[] outputs, object returnValue, object correlationState);
  9. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.