1 write to UdpOutputChannel
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpChannelBase.cs (1)
368this.UdpOutputChannel = udpOutputChannel;
12 references to UdpOutputChannel
System.ServiceModel.Channels (12)
System\ServiceModel\Channels\UdpChannelBase.cs (7)
124T outputChannelProperty = this.UdpOutputChannel.GetProperty<T>(); 336this.UdpOutputChannel.Open(); 365Fx.Assert(this.UdpOutputChannel == null, "this.UdpOutputChannel must be null"); 388this.UdpOutputChannel.Abort(); 392this.UdpOutputChannel.Close(timeout); 472thisPtr.channel.UdpOutputChannel.EndClose(result); 482IAsyncResult result = this.channel.UdpOutputChannel.BeginClose(this.timeoutHelper.RemainingTime(), this.PrepareAsyncCompletion(completeCloseOutputChannelCallback), this);
System\ServiceModel\Channels\UdpDuplexChannel.cs (4)
64return this.UdpOutputChannel.BeginSend(message, timeout, callback, state); 75this.UdpOutputChannel.EndSend(result); 91this.UdpOutputChannel.Send(message, timeout); 192this.UdpOutputChannel.CancelRetransmission(message.Headers.RelatesTo);
System\ServiceModel\Channels\UdpReplyChannel.cs (1)
152UdpRequestContext udpRequestContext = new UdpRequestContext(this.UdpOutputChannel, message);