1 write to _channel
System.ServiceModel.Primitives (1)
System\ServiceModel\ClientBase.cs (1)
931
_channel
= cf.ServiceChannelFactory.CreateServiceChannel(client.Endpoint.Address, client.Endpoint.Address.Uri);
62 references to _channel
System.ServiceModel.Primitives (62)
System\ServiceModel\ClientBase.cs (62)
932
_channel
.InstanceContext = cf.CallbackInstance;
933
_runtime =
_channel
.ClientRuntime.GetRuntime();
946
return
_channel
.BeginCall(op.Action, op.IsOneWay, op, ins, callback, state);
959
object ret =
_channel
.EndCall(op.Action, outs, result);
981
get { return ((IClientChannel)
_channel
).AllowInitializationUI; }
982
set { ((IClientChannel)
_channel
).AllowInitializationUI = value; }
987
get { return ((IClientChannel)
_channel
).DidInteractiveInitialization; }
992
get { return ((IClientChannel)
_channel
).Via; }
997
add { ((IClientChannel)
_channel
).UnknownMessageReceived += value; }
998
remove { ((IClientChannel)
_channel
).UnknownMessageReceived -= value; }
1003
((IClientChannel)
_channel
).DisplayInitializationUI();
1008
return ((IClientChannel)
_channel
).BeginDisplayInitializationUI(callback, state);
1013
((IClientChannel)
_channel
).EndDisplayInitializationUI(result);
1018
get { return ((IContextChannel)
_channel
).AllowOutputBatching; }
1019
set { ((IContextChannel)
_channel
).AllowOutputBatching = value; }
1024
get { return ((IContextChannel)
_channel
).InputSession; }
1029
get { return ((IContextChannel)
_channel
).LocalAddress; }
1034
get { return ((IContextChannel)
_channel
).OperationTimeout; }
1035
set { ((IContextChannel)
_channel
).OperationTimeout = value; }
1040
get { return ((IContextChannel)
_channel
).OutputSession; }
1045
get { return ((IContextChannel)
_channel
).RemoteAddress; }
1050
get { return ((IContextChannel)
_channel
).SessionId; }
1055
return ((IChannel)
_channel
).GetProperty<TProperty>();
1060
get { return ((ICommunicationObject)
_channel
).State; }
1065
add { ((ICommunicationObject)
_channel
).Closed += value; }
1066
remove { ((ICommunicationObject)
_channel
).Closed -= value; }
1071
add { ((ICommunicationObject)
_channel
).Closing += value; }
1072
remove { ((ICommunicationObject)
_channel
).Closing -= value; }
1077
add { ((ICommunicationObject)
_channel
).Faulted += value; }
1078
remove { ((ICommunicationObject)
_channel
).Faulted -= value; }
1083
add { ((ICommunicationObject)
_channel
).Opened += value; }
1084
remove { ((ICommunicationObject)
_channel
).Opened -= value; }
1089
add { ((ICommunicationObject)
_channel
).Opening += value; }
1090
remove { ((ICommunicationObject)
_channel
).Opening -= value; }
1095
((ICommunicationObject)
_channel
).Abort();
1100
((ICommunicationObject)
_channel
).Close();
1105
((ICommunicationObject)
_channel
).Close(timeout);
1110
return ((ICommunicationObject)
_channel
).BeginClose(callback, state);
1115
return ((ICommunicationObject)
_channel
).BeginClose(timeout, callback, state);
1120
((ICommunicationObject)
_channel
).EndClose(result);
1125
((ICommunicationObject)
_channel
).Open();
1130
((ICommunicationObject)
_channel
).Open(timeout);
1135
return ((ICommunicationObject)
_channel
).BeginOpen(callback, state);
1140
return ((ICommunicationObject)
_channel
).BeginOpen(timeout, callback, state);
1145
((ICommunicationObject)
_channel
).EndOpen(result);
1150
get { return ((IExtensibleObject<IContextChannel>)
_channel
).Extensions; }
1155
((IDisposable)
_channel
).Dispose();
1160
get { return ((IOutputChannel)
_channel
).Via; }
1165
get { return ((IOutputChannel)
_channel
).RemoteAddress; }
1170
((IOutputChannel)
_channel
).Send(message);
1175
((IOutputChannel)
_channel
).Send(message, timeout);
1180
return ((IOutputChannel)
_channel
).BeginSend(message, callback, state);
1185
return ((IOutputChannel)
_channel
).BeginSend(message, timeout, callback, state);
1190
((IOutputChannel)
_channel
).EndSend(result);
1195
get { return ((IRequestChannel)
_channel
).Via; }
1200
get { return ((IRequestChannel)
_channel
).RemoteAddress; }
1205
return ((IRequestChannel)
_channel
).Request(message);
1210
return ((IRequestChannel)
_channel
).Request(message, timeout);
1215
return ((IRequestChannel)
_channel
).BeginRequest(message, callback, state);
1220
return ((IRequestChannel)
_channel
).BeginRequest(message, timeout, callback, state);
1225
return ((IRequestChannel)
_channel
).EndRequest(result);
1230
return
_channel
;