2 writes to lastReplyAcked
System.ServiceModel (2)
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (2)
618this.lastReplyAcked = true; //If Last Reply has no user data, it does not need to be acked. Here we just set it as its ack received. 679this.lastReplyAcked = info.Ranges.Contains(this.lastReplySequenceNumber);
3 references to lastReplyAcked
System.ServiceModel (3)
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (3)
105return this.connection.AllAdded && (this.requestsByRequestSequenceNumber.Count == 0) && this.lastReplyAcked; 315|| ((this.lastReply != null) && (this.lastReply.RequestSequenceNumber == requestSeqNum) && (!this.lastReplyAcked))); 677if (!this.lastReplyAcked && (this.lastReplySequenceNumber != Int64.MinValue))