1 write to _serviceChannel
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
39channelProxy._serviceChannel = serviceChannel;
74 references to _serviceChannel
dotnet-svcutil-lib (74)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (74)
70else if (declaringType.IsAssignableFrom(_serviceChannel.GetType())) 81if (_serviceChannel.Factory != null) 119return _serviceChannel; 311Task task = TaskCreator.CreateTask(_serviceChannel, methodCall, operation); 328activityName = string.Format(SRServiceModel.ActivityClose, _serviceChannel.GetType().FullName); 340return ExecuteMessage(_serviceChannel, methodCall); 354object ret = _serviceChannel.BeginCall(operation.Action, operation.IsOneWay, operation, ins, callback, asyncState); 363object ret = _serviceChannel.EndCall(operation.Action, outs, result); 372object ret = _serviceChannel.Call(operation.Action, operation.IsOneWay, operation, ins, outs); 525return _serviceChannel.GetProperty<T>(); 530get { return _serviceChannel.State; } 535add { _serviceChannel.Closed += value; } 536remove { _serviceChannel.Closed -= value; } 541add { _serviceChannel.Closing += value; } 542remove { _serviceChannel.Closing -= value; } 547add { _serviceChannel.Faulted += value; } 548remove { _serviceChannel.Faulted -= value; } 553add { _serviceChannel.Opened += value; } 554remove { _serviceChannel.Opened -= value; } 559add { _serviceChannel.Opening += value; } 560remove { _serviceChannel.Opening -= value; } 565_serviceChannel.Abort(); 570_serviceChannel.Close(); 575_serviceChannel.Close(timeout); 580return _serviceChannel.BeginClose(callback, state); 585return _serviceChannel.BeginClose(timeout, callback, state); 590_serviceChannel.EndClose(result); 595_serviceChannel.Open(); 600_serviceChannel.Open(timeout); 605return _serviceChannel.BeginOpen(callback, state); 610return _serviceChannel.BeginOpen(timeout, callback, state); 615_serviceChannel.EndOpen(result); 622return ((IClientChannel)_serviceChannel).AllowInitializationUI; 626((IClientChannel)_serviceChannel).AllowInitializationUI = value; 632get { return ((IClientChannel)_serviceChannel).DidInteractiveInitialization; } 637get { return _serviceChannel.Via; } 642add { ((IClientChannel)_serviceChannel).UnknownMessageReceived += value; } 643remove { ((IClientChannel)_serviceChannel).UnknownMessageReceived -= value; } 648return _serviceChannel.BeginDisplayInitializationUI(callback, state); 653_serviceChannel.DisplayInitializationUI(); 658_serviceChannel.EndDisplayInitializationUI(result); 663((IClientChannel)_serviceChannel).Dispose(); 670return ((IContextChannel)_serviceChannel).AllowOutputBatching; 674((IContextChannel)_serviceChannel).AllowOutputBatching = value; 680get { return ((IContextChannel)_serviceChannel).InputSession; } 685get { return ((IContextChannel)_serviceChannel).LocalAddress; } 692return ((IContextChannel)_serviceChannel).OperationTimeout; 696((IContextChannel)_serviceChannel).OperationTimeout = value; 702get { return ((IContextChannel)_serviceChannel).OutputSession; } 707get { return ((IContextChannel)_serviceChannel).RemoteAddress; } 712get { return _serviceChannel.Via; } 717get { return ((IContextChannel)_serviceChannel).RemoteAddress; } 722get { return ((IContextChannel)_serviceChannel).SessionId; } 727get { return ((IContextChannel)_serviceChannel).Extensions; } 732return _serviceChannel.BeginSend(message, callback, state); 737return _serviceChannel.BeginSend(message, timeout, callback, state); 742_serviceChannel.EndSend(result); 747_serviceChannel.Send(message); 752_serviceChannel.Send(message, timeout); 757return _serviceChannel.Request(message); 762return _serviceChannel.Request(message, timeout); 767return _serviceChannel.BeginRequest(message, callback, state); 772return _serviceChannel.BeginRequest(message, timeout, callback, state); 777return _serviceChannel.EndRequest(result); 782return ((IDuplexContextChannel)_serviceChannel).BeginCloseOutputSession(timeout, callback, state); 787((IDuplexContextChannel)_serviceChannel).EndCloseOutputSession(result); 792((IDuplexContextChannel)_serviceChannel).CloseOutputSession(timeout); 797get { return ((IContextChannel)_serviceChannel).RemoteAddress; } 802get { return _serviceChannel.Via; } 807get { return _serviceChannel.ListenUri; } 814return ((IDuplexContextChannel)_serviceChannel).AutomaticInputSessionShutdown; 819((IDuplexContextChannel)_serviceChannel).AutomaticInputSessionShutdown = value; 827return ((IDuplexContextChannel)_serviceChannel).CallbackInstance; 832((IDuplexContextChannel)_serviceChannel).CallbackInstance = value;