1 write to _communicationObject
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (1)
146
_communicationObject
= new WrapperSecurityCommunicationObject(this);
23 references to _communicationObject
dotnet-svcutil-lib (23)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (23)
163
get { return
_communicationObject
; }
168
add {
_communicationObject
.Closed += value; }
169
remove {
_communicationObject
.Closed -= value; }
174
add {
_communicationObject
.Closing += value; }
175
remove {
_communicationObject
.Closing -= value; }
180
add {
_communicationObject
.Faulted += value; }
181
remove {
_communicationObject
.Faulted -= value; }
186
add {
_communicationObject
.Opened += value; }
187
remove {
_communicationObject
.Opened -= value; }
192
add {
_communicationObject
.Opening += value; }
193
remove {
_communicationObject
.Opening -= value; }
198
get { return
_communicationObject
.State; }
214
_communicationObject
.Abort();
219
_communicationObject
.Close();
224
_communicationObject
.Close(timeout);
229
return
_communicationObject
.BeginClose(callback, state);
234
return
_communicationObject
.BeginClose(timeout, callback, state);
239
_communicationObject
.EndClose(result);
244
_communicationObject
.Open();
249
_communicationObject
.Open(timeout);
254
return
_communicationObject
.BeginOpen(callback, state);
259
return
_communicationObject
.BeginOpen(timeout, callback, state);
264
_communicationObject
.EndOpen(result);