e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
26 lines
696 B
C#
26 lines
696 B
C#
//-----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//-----------------------------------------------------------------------------
|
|
using System;
|
|
using System.ServiceModel;
|
|
using System.ServiceModel.Channels;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace System.ServiceModel.Dispatcher
|
|
{
|
|
internal interface IDispatchFaultFormatter
|
|
{
|
|
MessageFault Serialize(FaultException faultException, out string action);
|
|
}
|
|
|
|
internal interface IDispatchFaultFormatterWrapper
|
|
{
|
|
IDispatchFaultFormatter InnerFaultFormatter
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|
|
|