1 write to communicationObject
System.ServiceModel (1)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (1)
119communicationObject = new WrapperSecurityCommunicationObject(this);
23 references to communicationObject
System.ServiceModel (23)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (23)
136get { return this.communicationObject; } 141add { this.communicationObject.Closed += value; } 142remove { this.communicationObject.Closed -= value; } 147add { this.communicationObject.Closing += value; } 148remove { this.communicationObject.Closing -= value; } 153add { this.communicationObject.Faulted += value; } 154remove { this.communicationObject.Faulted -= value; } 159add { this.communicationObject.Opened += value; } 160remove { this.communicationObject.Opened -= value; } 165add { this.communicationObject.Opening += value; } 166remove { this.communicationObject.Opening -= value; } 171get { return this.communicationObject.State; } 187this.communicationObject.Abort(); 192this.communicationObject.Close(); 197this.communicationObject.Close(timeout); 202return this.communicationObject.BeginClose(callback, state); 207return this.communicationObject.BeginClose(timeout, callback, state); 212this.communicationObject.EndClose(result); 217this.communicationObject.Open(); 222this.communicationObject.Open(timeout); 227return this.communicationObject.BeginOpen(callback, state); 232return this.communicationObject.BeginOpen(timeout, callback, state); 237this.communicationObject.EndOpen(result);