3 writes to pendingExceptionOnOpen
System.ServiceModel (3)
System\ServiceModel\Channels\ChannelDemuxer.cs (3)
2067
this.
pendingExceptionOnOpen
= e;
2643
this.channelDemuxer.
pendingExceptionOnOpen
= e;
2668
self.channelDemuxer.
pendingExceptionOnOpen
= completionException;
6 references to pendingExceptionOnOpen
System.ServiceModel (6)
System\ServiceModel\Channels\ChannelDemuxer.cs (6)
2026
if (this.
pendingExceptionOnOpen
!= null)
2028
if (
pendingExceptionOnOpen
is CommunicationObjectAbortedException)
2030
throw DiagnosticUtility.ExceptionUtility.ThrowHelperWarning(new CommunicationObjectAbortedException(SR.GetString(SR.PreviousChannelDemuxerOpenFailed, this.
pendingExceptionOnOpen
.ToString())));
2032
else if (
pendingExceptionOnOpen
is CommunicationObjectFaultedException)
2034
throw DiagnosticUtility.ExceptionUtility.ThrowHelperWarning(new CommunicationObjectFaultedException(SR.GetString(SR.PreviousChannelDemuxerOpenFailed, this.
pendingExceptionOnOpen
.ToString())));
2038
throw DiagnosticUtility.ExceptionUtility.ThrowHelperWarning(new CommunicationException(SR.GetString(SR.PreviousChannelDemuxerOpenFailed, this.
pendingExceptionOnOpen
.ToString())));