1 write to _channel
System.ServiceModel.Primitives (1)
System\ServiceModel\ClientBase.cs (1)
911_channel = cf.ServiceChannelFactory.CreateServiceChannel(client.Endpoint.Address, client.Endpoint.Address.Uri);
62 references to _channel
System.ServiceModel.Primitives (62)
System\ServiceModel\ClientBase.cs (62)
912_channel.InstanceContext = cf.CallbackInstance; 913_runtime = _channel.ClientRuntime.GetRuntime(); 926return _channel.BeginCall(op.Action, op.IsOneWay, op, ins, callback, state); 939object ret = _channel.EndCall(op.Action, outs, result); 961get { return ((IClientChannel)_channel).AllowInitializationUI; } 962set { ((IClientChannel)_channel).AllowInitializationUI = value; } 967get { return ((IClientChannel)_channel).DidInteractiveInitialization; } 972get { return ((IClientChannel)_channel).Via; } 977add { ((IClientChannel)_channel).UnknownMessageReceived += value; } 978remove { ((IClientChannel)_channel).UnknownMessageReceived -= value; } 983((IClientChannel)_channel).DisplayInitializationUI(); 988return ((IClientChannel)_channel).BeginDisplayInitializationUI(callback, state); 993((IClientChannel)_channel).EndDisplayInitializationUI(result); 998get { return ((IContextChannel)_channel).AllowOutputBatching; } 999set { ((IContextChannel)_channel).AllowOutputBatching = value; } 1004get { return ((IContextChannel)_channel).InputSession; } 1009get { return ((IContextChannel)_channel).LocalAddress; } 1014get { return ((IContextChannel)_channel).OperationTimeout; } 1015set { ((IContextChannel)_channel).OperationTimeout = value; } 1020get { return ((IContextChannel)_channel).OutputSession; } 1025get { return ((IContextChannel)_channel).RemoteAddress; } 1030get { return ((IContextChannel)_channel).SessionId; } 1035return ((IChannel)_channel).GetProperty<TProperty>(); 1040get { return ((ICommunicationObject)_channel).State; } 1045add { ((ICommunicationObject)_channel).Closed += value; } 1046remove { ((ICommunicationObject)_channel).Closed -= value; } 1051add { ((ICommunicationObject)_channel).Closing += value; } 1052remove { ((ICommunicationObject)_channel).Closing -= value; } 1057add { ((ICommunicationObject)_channel).Faulted += value; } 1058remove { ((ICommunicationObject)_channel).Faulted -= value; } 1063add { ((ICommunicationObject)_channel).Opened += value; } 1064remove { ((ICommunicationObject)_channel).Opened -= value; } 1069add { ((ICommunicationObject)_channel).Opening += value; } 1070remove { ((ICommunicationObject)_channel).Opening -= value; } 1075((ICommunicationObject)_channel).Abort(); 1080((ICommunicationObject)_channel).Close(); 1085((ICommunicationObject)_channel).Close(timeout); 1090return ((ICommunicationObject)_channel).BeginClose(callback, state); 1095return ((ICommunicationObject)_channel).BeginClose(timeout, callback, state); 1100((ICommunicationObject)_channel).EndClose(result); 1105((ICommunicationObject)_channel).Open(); 1110((ICommunicationObject)_channel).Open(timeout); 1115return ((ICommunicationObject)_channel).BeginOpen(callback, state); 1120return ((ICommunicationObject)_channel).BeginOpen(timeout, callback, state); 1125((ICommunicationObject)_channel).EndOpen(result); 1130get { return ((IExtensibleObject<IContextChannel>)_channel).Extensions; } 1135((IDisposable)_channel).Dispose(); 1140get { return ((IOutputChannel)_channel).Via; } 1145get { return ((IOutputChannel)_channel).RemoteAddress; } 1150((IOutputChannel)_channel).Send(message); 1155((IOutputChannel)_channel).Send(message, timeout); 1160return ((IOutputChannel)_channel).BeginSend(message, callback, state); 1165return ((IOutputChannel)_channel).BeginSend(message, timeout, callback, state); 1170((IOutputChannel)_channel).EndSend(result); 1175get { return ((IRequestChannel)_channel).Via; } 1180get { return ((IRequestChannel)_channel).RemoteAddress; } 1185return ((IRequestChannel)_channel).Request(message); 1190return ((IRequestChannel)_channel).Request(message, timeout); 1195return ((IRequestChannel)_channel).BeginRequest(message, callback, state); 1200return ((IRequestChannel)_channel).BeginRequest(message, timeout, callback, state); 1205return ((IRequestChannel)_channel).EndRequest(result); 1210return _channel;