IInvokeReceivedNotification.cs 477 B

123456789101112131415
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel.Dispatcher
  5. {
  6. using System;
  7. using System.ServiceModel.Channels;
  8. interface IInvokeReceivedNotification
  9. {
  10. void NotifyInvokeReceived();
  11. void NotifyInvokeReceived(RequestContext request);
  12. }
  13. }