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