FaultImportOptions.cs 566 B

12345678910111213141516171819
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. using System;
  5. namespace System.ServiceModel
  6. {
  7. public class FaultImportOptions
  8. {
  9. /* use the current message formatter for faults.*/
  10. bool useMessageFormat = false;
  11. public bool UseMessageFormat
  12. {
  13. get { return useMessageFormat; }
  14. set { useMessageFormat = value; }
  15. }
  16. }
  17. }