1 write to connection
System.ServiceModel (1)
System\ServiceModel\Channels\ReliableOutputConnection.cs (1)
632this.connection = connection;
21 references to connection
System.ServiceModel (21)
System\ServiceModel\Channels\ReliableOutputConnection.cs (21)
648result = this.connection.strategy.BeginAddLast(message, this.timeoutHelper.RemainingTime(), state, addCompleteStatic, this); 652result = this.connection.strategy.BeginAdd(message, this.timeoutHelper.RemainingTime(), state, addCompleteStatic, this); 658this.connection.RaiseFault(null, SequenceTerminatedFault.CreateCommunicationFault(this.connection.id, SR.GetString(SR.SequenceTerminatedAddLastToWindowTimedOut), null)); 666this.connection.RaiseFault(null, SequenceTerminatedFault.CreateCommunicationFault(this.connection.id, SR.GetString(SR.SequenceTerminatedUnknownAddToWindowError), null)); 713attemptInfo = this.connection.strategy.EndAddLast(result); 715else if (!this.connection.strategy.EndAdd(result, out attemptInfo)) 724this.connection.RaiseFault(null, SequenceTerminatedFault.CreateCommunicationFault(this.connection.id, SR.GetString(SR.SequenceTerminatedAddLastToWindowTimedOut), null)); 732this.connection.RaiseFault(null, SequenceTerminatedFault.CreateCommunicationFault(this.connection.id, SR.GetString(SR.SequenceTerminatedUnknownAddToWindowError), null)); 737if (this.connection.sendGuard.Enter()) 743result = this.connection.beginSendHandler(attemptInfo, this.timeoutHelper.RemainingTime(), false, sendCompleteStatic, this); 748this.connection.RaiseFault(null, SequenceTerminatedFault.CreateQuotaExceededFault(this.connection.id)); 754this.connection.sendGuard.Exit(); 777this.connection.endSendHandler(result); 781this.connection.RaiseFault(null, SequenceTerminatedFault.CreateQuotaExceededFault(this.connection.id)); 786this.connection.sendGuard.Exit();