2 writes to retransmitList
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\UdpOutputChannel.cs (2)
54this.retransmitList = new Dictionary<UniqueId, IUdpRetransmitter>(); 502this.retransmitList = null;
15 references to retransmitList
System.ServiceModel.Channels (15)
System\ServiceModel\Channels\UdpOutputChannel.cs (15)
124if (messageId != null && this.retransmitList != null) 128if (this.retransmitList != null) 131if (this.retransmitList.TryGetValue(messageId, out retransmitter)) 133this.retransmitList.Remove(messageId); 368if (this.retransmitList.ContainsKey(messageId)) 376this.retransmitList[messageId] = retransmitter; 388if (this.retransmitList != null) 390this.retransmitList.Remove(messageId); 394if (this.retransmitList.Count == 0 && this.retransmissionDoneWaitHandle != null) 449if (!aborting && this.retransmitList != null && this.retransmitList.Count > 0) 488if (this.retransmitList != null) 490foreach (IUdpRetransmitter retransmitter in this.retransmitList.Values) 1022if (this.channel.retransmitList != null && this.channel.retransmitList.Count > 0)