1 write to _channel
System.ServiceModel.Primitives (1)
System\ServiceModel\ClientBase.cs (1)
931_channel = cf.ServiceChannelFactory.CreateServiceChannel(client.Endpoint.Address, client.Endpoint.Address.Uri);
62 references to _channel
System.ServiceModel.Primitives (62)
System\ServiceModel\ClientBase.cs (62)
932_channel.InstanceContext = cf.CallbackInstance; 933_runtime = _channel.ClientRuntime.GetRuntime(); 946return _channel.BeginCall(op.Action, op.IsOneWay, op, ins, callback, state); 959object ret = _channel.EndCall(op.Action, outs, result); 981get { return ((IClientChannel)_channel).AllowInitializationUI; } 982set { ((IClientChannel)_channel).AllowInitializationUI = value; } 987get { return ((IClientChannel)_channel).DidInteractiveInitialization; } 992get { return ((IClientChannel)_channel).Via; } 997add { ((IClientChannel)_channel).UnknownMessageReceived += value; } 998remove { ((IClientChannel)_channel).UnknownMessageReceived -= value; } 1003((IClientChannel)_channel).DisplayInitializationUI(); 1008return ((IClientChannel)_channel).BeginDisplayInitializationUI(callback, state); 1013((IClientChannel)_channel).EndDisplayInitializationUI(result); 1018get { return ((IContextChannel)_channel).AllowOutputBatching; } 1019set { ((IContextChannel)_channel).AllowOutputBatching = value; } 1024get { return ((IContextChannel)_channel).InputSession; } 1029get { return ((IContextChannel)_channel).LocalAddress; } 1034get { return ((IContextChannel)_channel).OperationTimeout; } 1035set { ((IContextChannel)_channel).OperationTimeout = value; } 1040get { return ((IContextChannel)_channel).OutputSession; } 1045get { return ((IContextChannel)_channel).RemoteAddress; } 1050get { return ((IContextChannel)_channel).SessionId; } 1055return ((IChannel)_channel).GetProperty<TProperty>(); 1060get { return ((ICommunicationObject)_channel).State; } 1065add { ((ICommunicationObject)_channel).Closed += value; } 1066remove { ((ICommunicationObject)_channel).Closed -= value; } 1071add { ((ICommunicationObject)_channel).Closing += value; } 1072remove { ((ICommunicationObject)_channel).Closing -= value; } 1077add { ((ICommunicationObject)_channel).Faulted += value; } 1078remove { ((ICommunicationObject)_channel).Faulted -= value; } 1083add { ((ICommunicationObject)_channel).Opened += value; } 1084remove { ((ICommunicationObject)_channel).Opened -= value; } 1089add { ((ICommunicationObject)_channel).Opening += value; } 1090remove { ((ICommunicationObject)_channel).Opening -= value; } 1095((ICommunicationObject)_channel).Abort(); 1100((ICommunicationObject)_channel).Close(); 1105((ICommunicationObject)_channel).Close(timeout); 1110return ((ICommunicationObject)_channel).BeginClose(callback, state); 1115return ((ICommunicationObject)_channel).BeginClose(timeout, callback, state); 1120((ICommunicationObject)_channel).EndClose(result); 1125((ICommunicationObject)_channel).Open(); 1130((ICommunicationObject)_channel).Open(timeout); 1135return ((ICommunicationObject)_channel).BeginOpen(callback, state); 1140return ((ICommunicationObject)_channel).BeginOpen(timeout, callback, state); 1145((ICommunicationObject)_channel).EndOpen(result); 1150get { return ((IExtensibleObject<IContextChannel>)_channel).Extensions; } 1155((IDisposable)_channel).Dispose(); 1160get { return ((IOutputChannel)_channel).Via; } 1165get { return ((IOutputChannel)_channel).RemoteAddress; } 1170((IOutputChannel)_channel).Send(message); 1175((IOutputChannel)_channel).Send(message, timeout); 1180return ((IOutputChannel)_channel).BeginSend(message, callback, state); 1185return ((IOutputChannel)_channel).BeginSend(message, timeout, callback, state); 1190((IOutputChannel)_channel).EndSend(result); 1195get { return ((IRequestChannel)_channel).Via; } 1200get { return ((IRequestChannel)_channel).RemoteAddress; } 1205return ((IRequestChannel)_channel).Request(message); 1210return ((IRequestChannel)_channel).Request(message, timeout); 1215return ((IRequestChannel)_channel).BeginRequest(message, callback, state); 1220return ((IRequestChannel)_channel).BeginRequest(message, timeout, callback, state); 1225return ((IRequestChannel)_channel).EndRequest(result); 1230return _channel;