1 write to CommunicationObject
System.ServiceModel.Primitives (1)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (1)
127CommunicationObject = new WrapperSecurityCommunicationObject(this);
61 references to CommunicationObject
System.ServiceModel.Primitives (61)
System\ServiceModel\Security\AcceleratedTokenProvider.cs (3)
37CommunicationObject.ThrowIfDisposedOrImmutable(); 48CommunicationObject.ThrowIfDisposedOrImmutable(); 62CommunicationObject.ThrowIfDisposedOrImmutable();
System\ServiceModel\Security\IssuanceTokenProviderBase.cs (13)
63CommunicationObject.ThrowIfDisposedOrImmutable(); 76CommunicationObject.ThrowIfDisposedOrImmutable(); 89CommunicationObject.ThrowIfDisposedOrImmutable(); 111CommunicationObject.ThrowIfDisposedOrImmutable(); 128CommunicationObject.ThrowIfDisposedOrImmutable(); 141CommunicationObject.ThrowIfDisposedOrImmutable(); 170CommunicationObject.ThrowIfDisposedOrImmutable(); 183CommunicationObject.ThrowIfDisposedOrImmutable(); 196CommunicationObject.ThrowIfDisposedOrImmutable(); 247CommunicationState state = CommunicationObject.State; 257CommunicationObject.ThrowIfClosed(); 350CommunicationObject.ThrowIfClosedOrNotOpen(); 367CommunicationObject.ThrowIfClosedOrNotOpen();
System\ServiceModel\Security\NegotiationTokenProvider.cs (1)
34CommunicationObject.ThrowIfDisposedOrImmutable();
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (20)
58CommunicationObject.ThrowIfDisposedOrImmutable(); 71CommunicationObject.ThrowIfDisposedOrImmutable(); 84CommunicationObject.ThrowIfDisposedOrImmutable(); 94CommunicationObject.ThrowIfDisposedOrImmutable(); 104CommunicationObject.ThrowIfDisposedOrImmutable(); 117CommunicationObject.ThrowIfDisposedOrImmutable(); 131CommunicationObject.ThrowIfDisposedOrImmutable(); 148CommunicationObject.ThrowIfDisposedOrImmutable(); 173CommunicationObject.ThrowIfDisposedOrImmutable(); 183CommunicationObject.ThrowIfDisposedOrImmutable(); 193CommunicationObject.ThrowIfDisposedOrImmutable(); 203CommunicationObject.ThrowIfDisposedOrImmutable(); 401CommunicationObject.ThrowIfClosedOrNotOpen(); 407CommunicationObject.ThrowIfClosedOrNotOpen(); 413CommunicationObject.ThrowIfClosedOrNotOpen(); 597CommunicationObject.ThrowIfClosedOrNotOpen(); 665CommunicationObject.ThrowIfClosedOrNotOpen(); 671CommunicationObject.ThrowIfClosedOrNotOpen(); 686CommunicationObject.ThrowIfClosedOrNotOpen(); 702CommunicationObject.ThrowIfClosedOrNotOpen();
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (24)
146add { CommunicationObject.Closed += value; } 147remove { CommunicationObject.Closed -= value; } 152add { CommunicationObject.Closing += value; } 153remove { CommunicationObject.Closing -= value; } 158add { CommunicationObject.Faulted += value; } 159remove { CommunicationObject.Faulted -= value; } 164add { CommunicationObject.Opened += value; } 165remove { CommunicationObject.Opened -= value; } 170add { CommunicationObject.Opening += value; } 171remove { CommunicationObject.Opening -= value; } 176get { return CommunicationObject.State; } 192CommunicationObject.Abort(); 197CommunicationObject.Close(); 202return ((IAsyncCommunicationObject)CommunicationObject).CloseAsync(timeout); 207CommunicationObject.Close(timeout); 212return CommunicationObject.BeginClose(callback, state); 217return CommunicationObject.BeginClose(timeout, callback, state); 222CommunicationObject.EndClose(result); 227CommunicationObject.Open(); 232return ((IAsyncCommunicationObject)CommunicationObject).OpenAsync(timeout); 237CommunicationObject.Open(timeout); 242return CommunicationObject.BeginOpen(callback, state); 247return CommunicationObject.BeginOpen(timeout, callback, state); 252CommunicationObject.EndOpen(result);