4 implementations of EndValidate
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
125public virtual bool EndValidate(IAsyncResult result) 679public bool EndValidate(IAsyncResult result)
System\ServiceModel\Channels\PipeConnection.cs (1)
1101public bool EndValidate(IAsyncResult result)
System\ServiceModel\Channels\SocketConnection.cs (1)
676public bool EndValidate(IAsyncResult result)
4 references to EndValidate
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
127return connection.EndValidate(result); 438return this.connection.EndValidate(result);
System\ServiceModel\Channels\SessionConnectionReader.cs (1)
233return this.Connection.EndValidate(result) && this.ContinuePostValidationProcessing();
System\ServiceModel\Channels\SingletonConnectionReader.cs (1)
204return this.Connection.EndValidate(result) && this.ContinuePostValidationProcessing();