1 write to _serviceChannel
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
39channelProxy._serviceChannel = serviceChannel;
75 references to _serviceChannel
System.ServiceModel.Primitives (75)
System\ServiceModel\Channels\ServiceChannelProxy.cs (75)
70else if (declaringType.IsAssignableFrom(_serviceChannel.GetType())) 81if (_serviceChannel.Factory != null) 123return _serviceChannel; 329Task task = TaskCreator.CreateTask(_serviceChannel, methodCall, operation); 346activityName = SRP.Format(SRP.ActivityClose, _serviceChannel.GetType().FullName); 358return ExecuteMessage(_serviceChannel, methodCall); 372object ret = _serviceChannel.BeginCall(operation.Action, operation.IsOneWay, operation, ins, callback, asyncState); 381object ret = _serviceChannel.EndCall(operation.Action, outs, result); 390object ret = _serviceChannel.Call(operation.Action, operation.IsOneWay, operation, ins, outs); 535return _serviceChannel.GetProperty<T>(); 540get { return _serviceChannel.State; } 545add { _serviceChannel.Closed += value; } 546remove { _serviceChannel.Closed -= value; } 551add { _serviceChannel.Closing += value; } 552remove { _serviceChannel.Closing -= value; } 557add { _serviceChannel.Faulted += value; } 558remove { _serviceChannel.Faulted -= value; } 563add { _serviceChannel.Opened += value; } 564remove { _serviceChannel.Opened -= value; } 569add { _serviceChannel.Opening += value; } 570remove { _serviceChannel.Opening -= value; } 575_serviceChannel.Abort(); 580_serviceChannel.Close(); 585_serviceChannel.Close(timeout); 590return _serviceChannel.BeginClose(callback, state); 595return _serviceChannel.BeginClose(timeout, callback, state); 600_serviceChannel.EndClose(result); 605_serviceChannel.Open(); 610_serviceChannel.Open(timeout); 615return _serviceChannel.BeginOpen(callback, state); 620return _serviceChannel.BeginOpen(timeout, callback, state); 625_serviceChannel.EndOpen(result); 632return ((IClientChannel)_serviceChannel).AllowInitializationUI; 636((IClientChannel)_serviceChannel).AllowInitializationUI = value; 642get { return ((IClientChannel)_serviceChannel).DidInteractiveInitialization; } 647get { return _serviceChannel.Via; } 652add { ((IClientChannel)_serviceChannel).UnknownMessageReceived += value; } 653remove { ((IClientChannel)_serviceChannel).UnknownMessageReceived -= value; } 658return _serviceChannel.BeginDisplayInitializationUI(callback, state); 663_serviceChannel.DisplayInitializationUI(); 668_serviceChannel.EndDisplayInitializationUI(result); 673((IClientChannel)_serviceChannel).Dispose(); 678return ((IAsyncDisposable)_serviceChannel).DisposeAsync(); 685return ((IContextChannel)_serviceChannel).AllowOutputBatching; 689((IContextChannel)_serviceChannel).AllowOutputBatching = value; 695get { return ((IContextChannel)_serviceChannel).InputSession; } 700get { return ((IContextChannel)_serviceChannel).LocalAddress; } 707return ((IContextChannel)_serviceChannel).OperationTimeout; 711((IContextChannel)_serviceChannel).OperationTimeout = value; 717get { return ((IContextChannel)_serviceChannel).OutputSession; } 722get { return ((IContextChannel)_serviceChannel).RemoteAddress; } 727get { return _serviceChannel.Via; } 732get { return ((IContextChannel)_serviceChannel).RemoteAddress; } 737get { return ((IContextChannel)_serviceChannel).SessionId; } 742get { return ((IContextChannel)_serviceChannel).Extensions; } 747return _serviceChannel.BeginSend(message, callback, state); 752return _serviceChannel.BeginSend(message, timeout, callback, state); 757_serviceChannel.EndSend(result); 762_serviceChannel.Send(message); 767_serviceChannel.Send(message, timeout); 772return _serviceChannel.Request(message); 777return _serviceChannel.Request(message, timeout); 782return _serviceChannel.BeginRequest(message, callback, state); 787return _serviceChannel.BeginRequest(message, timeout, callback, state); 792return _serviceChannel.EndRequest(result); 797return ((IDuplexContextChannel)_serviceChannel).BeginCloseOutputSession(timeout, callback, state); 802((IDuplexContextChannel)_serviceChannel).EndCloseOutputSession(result); 807((IDuplexContextChannel)_serviceChannel).CloseOutputSession(timeout); 812get { return ((IContextChannel)_serviceChannel).RemoteAddress; } 817get { return _serviceChannel.Via; } 822get { return _serviceChannel.ListenUri; } 829return ((IDuplexContextChannel)_serviceChannel).AutomaticInputSessionShutdown; 834((IDuplexContextChannel)_serviceChannel).AutomaticInputSessionShutdown = value; 842return ((IDuplexContextChannel)_serviceChannel).CallbackInstance; 847((IDuplexContextChannel)_serviceChannel).CallbackInstance = value;