2 types derived from FaultConverter
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FaultConverter.cs (1)
80
internal class DefaultFaultConverter :
FaultConverter
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityChannelFaultConverter.cs (1)
7
internal class SecurityChannelFaultConverter :
FaultConverter
18 references to FaultConverter
dotnet-svcutil-lib (18)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FaultConverter.cs (1)
11
public static
FaultConverter
GetDefaultFaultConverter(MessageVersion version)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageEncoder.cs (2)
24
if (typeof(T) == typeof(
FaultConverter
))
26
return (T)(object)
FaultConverter
.GetDefaultFaultConverter(this.MessageVersion);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityChannelFaultConverter.cs (4)
24
FaultConverter
inner = _innerChannel.GetProperty<
FaultConverter
>();
44
FaultConverter
inner = _innerChannel.GetProperty<
FaultConverter
>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (2)
948
ThrowIfFaultUnderstood(rpc.Reply, fault, action, rpc.Reply.Version, rpc.Channel.GetProperty<
FaultConverter
>());
999
private void ThrowIfFaultUnderstood(Message reply, MessageFault fault, string action, MessageVersion version,
FaultConverter
faultConverter)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportChannelFactory.cs (1)
111
if (typeof(T) == typeof(
FaultConverter
))
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelDispatcher.cs (1)
614
internal void ProvideFault(Exception e,
FaultConverter
faultConverter, ref ErrorHandlerFaultInfo faultInfo)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (3)
502
_listener.ChannelDispatcher.ProvideFault(e, _requestInfo.Channel == null ? _binder.Channel.GetProperty<
FaultConverter
>() : _requestInfo.Channel.GetProperty<
FaultConverter
>(), ref faultInfo);
507
dispatchBehavior.ChannelDispatcher.ProvideFault(e, _channel.GetProperty<
FaultConverter
>(), ref faultInfo);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (3)
58
this.ProvideFault(rpc.Error, rpc.Channel.GetProperty<
FaultConverter
>(), ref rpc.FaultInfo);
113
internal void ProvideFault(Exception e,
FaultConverter
faultConverter, ref ErrorHandlerFaultInfo faultInfo)
129
private void ProvideWellKnownFault(Exception e,
FaultConverter
faultConverter, ref ErrorHandlerFaultInfo faultInfo)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityChannel.cs (1)
29
if (typeof(T) == typeof(
FaultConverter
))