net\System\Net\_ListenerRequestStream.cs (3)
374internal HttpRequestStreamAsyncResult(object asyncObject, object userState, AsyncCallback callback) : base(asyncObject, userState, callback) {
377internal HttpRequestStreamAsyncResult(object asyncObject, object userState, AsyncCallback callback, uint dataAlreadyRead) : base(asyncObject, userState, callback) {
381internal HttpRequestStreamAsyncResult(object asyncObject, object userState, AsyncCallback callback, byte[] buffer, int offset, uint size, uint dataAlreadyRead): base(asyncObject, userState, callback) {
net\System\Net\_ListenerResponseStream.cs (2)
508internal HttpResponseStreamAsyncResult(object asyncObject, object userState, AsyncCallback callback) : base(asyncObject, userState, callback) {
512internal HttpResponseStreamAsyncResult(object asyncObject, object userState, AsyncCallback callback, byte[] buffer, int offset, int size, bool chunked, bool sentHeaders): base(asyncObject, userState, callback){
net\System\Net\HttpWebRequest.cs (5)
1572_WriteAResult = new LazyAsyncResult(this, null, null);
2224_ReadAResult = new LazyAsyncResult(this, null, null);
3795_ReadAResult = new LazyAsyncResult(null, null, null); //never throws
4137_ConnectionAResult = new LazyAsyncResult(this, null, null);
4138_ConnectionReaderAResult = new LazyAsyncResult(this, null, null);
net\System\Net\mail\Base64Stream.cs (2)
430internal ReadAsyncResult(Base64Stream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state) : base(null,state,callback)
509internal WriteAsyncResult(Base64Stream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state) : base(null, state, callback)
net\System\Net\SecureProtocols\_SslState.cs (5)
633AsyncProtocolRequest asyncRequest = new AsyncProtocolRequest(new LazyAsyncResult(this, null, new AsyncCallback(RehandshakeCompleteCallback)));
1140lazyResult = new LazyAsyncResult(null, null,/*must be */ null);
1220lazyResult = new LazyAsyncResult(null, null, /*must be */ null);
1291lazyResult = new LazyAsyncResult(null, null, /*must be */null);
1371lazyResult = new LazyAsyncResult(null, null, /*must be*/null);