1 write to _channel
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
534_channel = cf.ServiceChannelFactory.CreateServiceChannel(client.Endpoint.Address, client.Endpoint.Address.Uri);
62 references to _channel
dotnet-svcutil-lib (62)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (62)
535_channel.InstanceContext = cf.CallbackInstance; 536_runtime = _channel.ClientRuntime.GetRuntime(); 549return _channel.BeginCall(op.Action, op.IsOneWay, op, ins, callback, state); 562object ret = _channel.EndCall(op.Action, outs, result); 584get { return ((IClientChannel)_channel).AllowInitializationUI; } 585set { ((IClientChannel)_channel).AllowInitializationUI = value; } 590get { return ((IClientChannel)_channel).DidInteractiveInitialization; } 595get { return ((IClientChannel)_channel).Via; } 600add { ((IClientChannel)_channel).UnknownMessageReceived += value; } 601remove { ((IClientChannel)_channel).UnknownMessageReceived -= value; } 606((IClientChannel)_channel).DisplayInitializationUI(); 611return ((IClientChannel)_channel).BeginDisplayInitializationUI(callback, state); 616((IClientChannel)_channel).EndDisplayInitializationUI(result); 621get { return ((IContextChannel)_channel).AllowOutputBatching; } 622set { ((IContextChannel)_channel).AllowOutputBatching = value; } 627get { return ((IContextChannel)_channel).InputSession; } 632get { return ((IContextChannel)_channel).LocalAddress; } 637get { return ((IContextChannel)_channel).OperationTimeout; } 638set { ((IContextChannel)_channel).OperationTimeout = value; } 643get { return ((IContextChannel)_channel).OutputSession; } 648get { return ((IContextChannel)_channel).RemoteAddress; } 653get { return ((IContextChannel)_channel).SessionId; } 658return ((IChannel)_channel).GetProperty<TProperty>(); 663get { return ((ICommunicationObject)_channel).State; } 668add { ((ICommunicationObject)_channel).Closed += value; } 669remove { ((ICommunicationObject)_channel).Closed -= value; } 674add { ((ICommunicationObject)_channel).Closing += value; } 675remove { ((ICommunicationObject)_channel).Closing -= value; } 680add { ((ICommunicationObject)_channel).Faulted += value; } 681remove { ((ICommunicationObject)_channel).Faulted -= value; } 686add { ((ICommunicationObject)_channel).Opened += value; } 687remove { ((ICommunicationObject)_channel).Opened -= value; } 692add { ((ICommunicationObject)_channel).Opening += value; } 693remove { ((ICommunicationObject)_channel).Opening -= value; } 698((ICommunicationObject)_channel).Abort(); 703((ICommunicationObject)_channel).Close(); 708((ICommunicationObject)_channel).Close(timeout); 713return ((ICommunicationObject)_channel).BeginClose(callback, state); 718return ((ICommunicationObject)_channel).BeginClose(timeout, callback, state); 723((ICommunicationObject)_channel).EndClose(result); 728((ICommunicationObject)_channel).Open(); 733((ICommunicationObject)_channel).Open(timeout); 738return ((ICommunicationObject)_channel).BeginOpen(callback, state); 743return ((ICommunicationObject)_channel).BeginOpen(timeout, callback, state); 748((ICommunicationObject)_channel).EndOpen(result); 753get { return ((IExtensibleObject<IContextChannel>)_channel).Extensions; } 758((IDisposable)_channel).Dispose(); 763get { return ((IOutputChannel)_channel).Via; } 768get { return ((IOutputChannel)_channel).RemoteAddress; } 773((IOutputChannel)_channel).Send(message); 778((IOutputChannel)_channel).Send(message, timeout); 783return ((IOutputChannel)_channel).BeginSend(message, callback, state); 788return ((IOutputChannel)_channel).BeginSend(message, timeout, callback, state); 793((IOutputChannel)_channel).EndSend(result); 798get { return ((IRequestChannel)_channel).Via; } 803get { return ((IRequestChannel)_channel).RemoteAddress; } 808return ((IRequestChannel)_channel).Request(message); 813return ((IRequestChannel)_channel).Request(message, timeout); 818return ((IRequestChannel)_channel).BeginRequest(message, callback, state); 823return ((IRequestChannel)_channel).BeginRequest(message, timeout, callback, state); 828return ((IRequestChannel)_channel).EndRequest(result); 833return _channel;