4 implementations of BeginValidate
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
120public virtual IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state) 674public IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state)
System\ServiceModel\Channels\PipeConnection.cs (1)
1096public IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state)
System\ServiceModel\Channels\SocketConnection.cs (1)
671public IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state)
4 references to BeginValidate
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
122return connection.BeginValidate(uri, callback, state); 433return this.connection.BeginValidate(uri, callback, state);
System\ServiceModel\Channels\SessionConnectionReader.cs (1)
182IAsyncResult result = this.Connection.BeginValidate(this.via, onValidate, this);
System\ServiceModel\Channels\SingletonConnectionReader.cs (1)
152IAsyncResult result = this.Connection.BeginValidate(this.via, onValidate, this);