IDispatchFaultFormatter.cs 696 B

12345678910111213141516171819202122232425
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. using System;
  5. using System.ServiceModel;
  6. using System.ServiceModel.Channels;
  7. using System.Runtime.Serialization;
  8. namespace System.ServiceModel.Dispatcher
  9. {
  10. internal interface IDispatchFaultFormatter
  11. {
  12. MessageFault Serialize(FaultException faultException, out string action);
  13. }
  14. internal interface IDispatchFaultFormatterWrapper
  15. {
  16. IDispatchFaultFormatter InnerFaultFormatter
  17. {
  18. get;
  19. set;
  20. }
  21. }
  22. }