1 write to _communicationObject
System.ServiceModel (1)
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
79_communicationObject = wcfSessionAuthenticator as ICommunicationObject;
23 references to _communicationObject
System.ServiceModel (23)
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (23)
80if ( _communicationObject == null ) 158_communicationObject.Abort(); 163return _communicationObject.BeginClose( timeout, callback, state ); 168return _communicationObject.BeginClose( callback, state ); 173return _communicationObject.BeginOpen( timeout, callback, state ); 178return _communicationObject.BeginOpen( callback, state ); 183_communicationObject.Close( timeout ); 188_communicationObject.Close(); 193add { _communicationObject.Closed += value; } 194remove { _communicationObject.Closed -= value; } 199add { _communicationObject.Closing += value; } 200remove { _communicationObject.Closing -= value; } 205_communicationObject.EndClose( result ); 210_communicationObject.EndOpen( result ); 215add { _communicationObject.Faulted += value; } 216remove { _communicationObject.Faulted -= value; } 221_communicationObject.Open( timeout ); 226_communicationObject.Open(); 231add { _communicationObject.Opened += value; } 232remove { _communicationObject.Opened -= value; } 237add { _communicationObject.Opening += value; } 238remove { _communicationObject.Opening -= value; } 244get { return _communicationObject.State; }