1 write to _communicationObject
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (1)
333
_communicationObject
= new WrapperSecurityCommunicationObject(this);
23 references to _communicationObject
dotnet-svcutil-lib (23)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (23)
338
get { return
_communicationObject
; }
343
add {
_communicationObject
.Closed += value; }
344
remove {
_communicationObject
.Closed -= value; }
349
add {
_communicationObject
.Closing += value; }
350
remove {
_communicationObject
.Closing -= value; }
355
add {
_communicationObject
.Faulted += value; }
356
remove {
_communicationObject
.Faulted -= value; }
361
add {
_communicationObject
.Opened += value; }
362
remove {
_communicationObject
.Opened -= value; }
367
add {
_communicationObject
.Opening += value; }
368
remove {
_communicationObject
.Opening -= value; }
373
get { return
_communicationObject
.State; }
389
_communicationObject
.Abort();
394
_communicationObject
.Close();
399
_communicationObject
.Close(timeout);
404
return
_communicationObject
.BeginClose(callback, state);
409
return
_communicationObject
.BeginClose(timeout, callback, state);
414
_communicationObject
.EndClose(result);
419
_communicationObject
.Open();
424
_communicationObject
.Open(timeout);
429
return
_communicationObject
.BeginOpen(callback, state);
434
return
_communicationObject
.BeginOpen(timeout, callback, state);
439
_communicationObject
.EndOpen(result);