e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
29 lines
911 B
C#
29 lines
911 B
C#
//-----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//-----------------------------------------------------------------------------
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.ServiceModel.Channels;
|
|
using System.ServiceModel.Description;
|
|
using System.Runtime.Serialization;
|
|
using System.Xml;
|
|
using System.Reflection;
|
|
using System.Diagnostics;
|
|
|
|
namespace System.ServiceModel.Dispatcher
|
|
{
|
|
class DataContractSerializerFaultFormatter : FaultFormatter
|
|
{
|
|
internal DataContractSerializerFaultFormatter(Type[] detailTypes)
|
|
: base(detailTypes)
|
|
{
|
|
}
|
|
|
|
internal DataContractSerializerFaultFormatter(SynchronizedCollection<FaultContractInfo> faultContractInfoCollection)
|
|
: base(faultContractInfoCollection)
|
|
{
|
|
}
|
|
}
|
|
}
|