1 write to communicationObject
System.ServiceModel (1)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (1)
308communicationObject = new WrapperSecurityCommunicationObject(this);
23 references to communicationObject
System.ServiceModel (23)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (23)
313get { return this.communicationObject; } 318add { this.communicationObject.Closed += value; } 319remove { this.communicationObject.Closed -= value; } 324add { this.communicationObject.Closing += value; } 325remove { this.communicationObject.Closing -= value; } 330add { this.communicationObject.Faulted += value; } 331remove { this.communicationObject.Faulted -= value; } 336add { this.communicationObject.Opened += value; } 337remove { this.communicationObject.Opened -= value; } 342add { this.communicationObject.Opening += value; } 343remove { this.communicationObject.Opening -= value; } 348get { return this.communicationObject.State; } 364this.communicationObject.Abort(); 369this.communicationObject.Close(); 374this.communicationObject.Close(timeout); 379return this.communicationObject.BeginClose(callback, state); 384return this.communicationObject.BeginClose(timeout, callback, state); 389this.communicationObject.EndClose(result); 394this.communicationObject.Open(); 399this.communicationObject.Open(timeout); 404return this.communicationObject.BeginOpen(callback, state); 409return this.communicationObject.BeginOpen(timeout, callback, state); 414this.communicationObject.EndOpen(result);