File: System\ServiceModel\FaultImportOptions.cs
Project: ndp\cdf\src\WCF\ServiceModel\System.ServiceModel.csproj (System.ServiceModel)
//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------
using System;
 
namespace System.ServiceModel
{
    public class FaultImportOptions
    {
        /* use the current message formatter for faults.*/
        bool useMessageFormat = false;
 
        public bool UseMessageFormat
        {
            get { return useMessageFormat; }
            set { useMessageFormat = value; }
        }
    }
}