1 write to channel
System.ServiceModel (1)
System\ServiceModel\ClientBase.cs (1)
1120this.channel = cf.ServiceChannelFactory.CreateServiceChannel(client.Endpoint.Address, client.Endpoint.Address.Uri);
62 references to channel
System.ServiceModel (62)
System\ServiceModel\ClientBase.cs (62)
1121this.channel.InstanceContext = cf.CallbackInstance; 1122this.runtime = this.channel.ClientRuntime.GetRuntime(); 1138return this.channel.BeginCall(op.Action, op.IsOneWay, op, ins, callback, state); 1154object ret = this.channel.EndCall(op.Action, outs, result); 1176get { return ((IClientChannel)this.channel).AllowInitializationUI; } 1177set { ((IClientChannel)this.channel).AllowInitializationUI = value; } 1182get { return ((IClientChannel)this.channel).DidInteractiveInitialization; } 1187get { return ((IClientChannel)this.channel).Via; } 1192add { ((IClientChannel)this.channel).UnknownMessageReceived += value; } 1193remove { ((IClientChannel)this.channel).UnknownMessageReceived -= value; } 1198((IClientChannel)this.channel).DisplayInitializationUI(); 1203return ((IClientChannel)this.channel).BeginDisplayInitializationUI(callback, state); 1208((IClientChannel)this.channel).EndDisplayInitializationUI(result); 1213get { return ((IContextChannel)this.channel).AllowOutputBatching; } 1214set { ((IContextChannel)this.channel).AllowOutputBatching = value; } 1219get { return ((IContextChannel)this.channel).InputSession; } 1224get { return ((IContextChannel)this.channel).LocalAddress; } 1229get { return ((IContextChannel)this.channel).OperationTimeout; } 1230set { ((IContextChannel)this.channel).OperationTimeout = value; } 1235get { return ((IContextChannel)this.channel).OutputSession; } 1240get { return ((IContextChannel)this.channel).RemoteAddress; } 1245get { return ((IContextChannel)this.channel).SessionId; } 1250return ((IChannel)this.channel).GetProperty<TProperty>(); 1255get { return ((ICommunicationObject)this.channel).State; } 1260add { ((ICommunicationObject)this.channel).Closed += value; } 1261remove { ((ICommunicationObject)this.channel).Closed -= value; } 1266add { ((ICommunicationObject)this.channel).Closing += value; } 1267remove { ((ICommunicationObject)this.channel).Closing -= value; } 1272add { ((ICommunicationObject)this.channel).Faulted += value; } 1273remove { ((ICommunicationObject)this.channel).Faulted -= value; } 1278add { ((ICommunicationObject)this.channel).Opened += value; } 1279remove { ((ICommunicationObject)this.channel).Opened -= value; } 1284add { ((ICommunicationObject)this.channel).Opening += value; } 1285remove { ((ICommunicationObject)this.channel).Opening -= value; } 1290((ICommunicationObject)this.channel).Abort(); 1295((ICommunicationObject)this.channel).Close(); 1300((ICommunicationObject)this.channel).Close(timeout); 1305return ((ICommunicationObject)this.channel).BeginClose(callback, state); 1310return ((ICommunicationObject)this.channel).BeginClose(timeout, callback, state); 1315((ICommunicationObject)this.channel).EndClose(result); 1320((ICommunicationObject)this.channel).Open(); 1325((ICommunicationObject)this.channel).Open(timeout); 1330return ((ICommunicationObject)this.channel).BeginOpen(callback, state); 1335return ((ICommunicationObject)this.channel).BeginOpen(timeout, callback, state); 1340((ICommunicationObject)this.channel).EndOpen(result); 1345get { return ((IExtensibleObject<IContextChannel>)this.channel).Extensions; } 1350((IDisposable)this.channel).Dispose(); 1355get { return ((IOutputChannel)this.channel).Via; } 1360get { return ((IOutputChannel)this.channel).RemoteAddress; } 1365((IOutputChannel)this.channel).Send(message); 1370((IOutputChannel)this.channel).Send(message, timeout); 1375return ((IOutputChannel)this.channel).BeginSend(message, callback, state); 1380return ((IOutputChannel)this.channel).BeginSend(message, timeout, callback, state); 1385((IOutputChannel)this.channel).EndSend(result); 1390get { return ((IRequestChannel)this.channel).Via; } 1395get { return ((IRequestChannel)this.channel).RemoteAddress; } 1400return ((IRequestChannel)this.channel).Request(message); 1405return ((IRequestChannel)this.channel).Request(message, timeout); 1410return ((IRequestChannel)this.channel).BeginRequest(message, callback, state); 1415return ((IRequestChannel)this.channel).BeginRequest(message, timeout, callback, state); 1420return ((IRequestChannel)this.channel).EndRequest(result); 1425return this.channel;