3 writes to firstIncomingChannel
System.ServiceModel (3)
System\ServiceModel\ServiceChannelManager.cs (3)
97
this.
firstIncomingChannel
= channel;
263
this.
firstIncomingChannel
= null;
361
this.
firstIncomingChannel
= null;
7 references to firstIncomingChannel
System.ServiceModel (7)
System\ServiceModel\ServiceChannelManager.cs (7)
93
if (this.
firstIncomingChannel
== null)
259
if (this.
firstIncomingChannel
!= null)
261
this.incomingChannels.Add(this.
firstIncomingChannel
);
262
this.ChannelRemoved(this.
firstIncomingChannel
); // Adding to collection called ChannelAdded, so call ChannelRemoved to balance
359
if (this.
firstIncomingChannel
== channel)
386
if (this.
firstIncomingChannel
!= null)
389
channels[0] = this.
firstIncomingChannel
;