15 lines
480 B
C#
15 lines
480 B
C#
//-----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//-----------------------------------------------------------------------------
|
|
using System;
|
|
using System.ServiceModel;
|
|
using System.ServiceModel.Channels;
|
|
|
|
namespace System.ServiceModel.Dispatcher
|
|
{
|
|
internal interface IClientFaultFormatter
|
|
{
|
|
FaultException Deserialize(MessageFault messageFault, string action);
|
|
}
|
|
}
|