DataContractSerializerFaultFormatter.cs 911 B

12345678910111213141516171819202122232425262728
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. using System.ServiceModel.Channels;
  8. using System.ServiceModel.Description;
  9. using System.Runtime.Serialization;
  10. using System.Xml;
  11. using System.Reflection;
  12. using System.Diagnostics;
  13. namespace System.ServiceModel.Dispatcher
  14. {
  15. class DataContractSerializerFaultFormatter : FaultFormatter
  16. {
  17. internal DataContractSerializerFaultFormatter(Type[] detailTypes)
  18. : base(detailTypes)
  19. {
  20. }
  21. internal DataContractSerializerFaultFormatter(SynchronizedCollection<FaultContractInfo> faultContractInfoCollection)
  22. : base(faultContractInfoCollection)
  23. {
  24. }
  25. }
  26. }