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