1 write to channel
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\InternalSendMessage.cs (1)
1766this.channel = this.instance.ClientSendChannel;
14 references to channel
System.ServiceModel.Activities (14)
System\ServiceModel\Activities\InternalSendMessage.cs (14)
1772if (this.channel.State == CommunicationState.Created) 1775IContextManager contextManager = this.channel.GetProperty<IContextManager>(); 1781IAsyncResult result = this.channel.BeginOpen(PrepareAsyncCompletion(onChannelOpened), this); 1808thisPtr.channel.EndOpen(result); 1841result = ((IRequestChannel)this.channel).BeginRequest(this.instance.RequestOrReply, onChannelReceiveReplyCompleted, this); 1844Message reply = ((IRequestChannel)this.channel).EndRequest(result); 1850result = ((IOutputChannel)this.channel).BeginSend(this.instance.RequestOrReply, PrepareAsyncCompletion(onChannelSendComplete), this); 1853((IOutputChannel)this.channel).EndSend(result); 1872this.channel.Abort(); 1920Fx.Assert(thisPtr.channel is IRequestChannel, "Channel must be of IRequestChannel type!"); 1922reply = ((IRequestChannel)thisPtr.channel).EndRequest(result); 1956thisPtr.channel.Abort(); 1983Fx.Assert(thisPtr.channel is IOutputChannel, "Channel must be of IOutputChannel type!"); 1985((IOutputChannel)thisPtr.channel).EndSend(result);