1 write to innerChannel
System.ServiceModel (1)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1110
this.
innerChannel
= innerChannel;
36 references to innerChannel
System.ServiceModel (36)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (36)
1126
get { return this.
innerChannel
.LocalAddress; }
1131
get { return this.
innerChannel
.RemoteAddress; }
1136
get { return this.
innerChannel
.Via; }
1141
get { return this.
innerChannel
.Session; }
1146
get { return this.
innerChannel
.State; }
1151
add { this.
innerChannel
.Closing += value; }
1152
remove { this.
innerChannel
.Closing -= value; }
1157
add { this.
innerChannel
.Closed += value; }
1158
remove { this.
innerChannel
.Closed -= value; }
1163
add { this.
innerChannel
.Faulted += value; }
1164
remove { this.
innerChannel
.Faulted -= value; }
1169
add { this.
innerChannel
.Opened += value; }
1170
remove { this.
innerChannel
.Opened -= value; }
1175
add { this.
innerChannel
.Opening += value; }
1176
remove { this.
innerChannel
.Opening -= value; }
1183
IDefaultCommunicationTimeouts defaultTimeouts = this.
innerChannel
as IDefaultCommunicationTimeouts;
1200
IDefaultCommunicationTimeouts defaultTimeouts = this.
innerChannel
as IDefaultCommunicationTimeouts;
1225
result = this.
innerChannel
.BeginReceive(TimeSpan.MaxValue, receiveAsyncCallback, this);
1274
message = this.
innerChannel
.EndReceive(result);
1323
result = this.
innerChannel
.BeginClose(closeInnerChannelCallback, this);
1332
this.
innerChannel
.Abort();
1363
this.
innerChannel
.EndClose(result);
1372
this.
innerChannel
.Abort();
1444
return this.
innerChannel
.GetProperty<T>();
1449
this.
innerChannel
.Abort();
1467
this.
innerChannel
.Close(timeout);
1490
return this.
innerChannel
.BeginClose(timeout, callback, state);
1503
this.
innerChannel
.EndClose(result);
1520
this.
innerChannel
.Open();
1526
this.
innerChannel
.Open(timeout);
1532
return this.
innerChannel
.BeginOpen(callback, state);
1537
return this.
innerChannel
.BeginOpen(timeout, callback, state);
1542
this.
innerChannel
.EndOpen(result);
1558
return this.
innerChannel
.BeginSend(message, callback, state);
1563
return this.
innerChannel
.BeginSend(message, timeout, callback, state);
1568
this.
innerChannel
.EndSend(result);