55 references to LazyAsyncResult
System (55)
net\System\Net\_ChunkParser.cs (1)
123userAsyncResult = new LazyAsyncResult(caller, state, callback);
net\System\Net\_ConnectStream.cs (1)
957asyncResult = new LazyAsyncResult(this, state, callback);
net\System\Net\_ContextAwareResult.cs (1)
112base(myObject, myState, myCallBack)
net\System\Net\_FtpControlStream.cs (1)
209LazyAsyncResult handshakeResult = new LazyAsyncResult(null, this, m_SSLHandshakeCallback);
net\System\Net\_FtpDataStream.cs (1)
239LazyAsyncResult userResult = new LazyAsyncResult(this, state, callback);
net\System\Net\_ListenerAsyncResult.cs (1)
27base(asyncObject, userState, callback)
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\_NestedMultipleAsyncResult.cs (1)
28: base( asyncObject, asyncState, asyncCallback ) {
net\System\Net\_NestedSingleAsyncResult.cs (1)
35: base( asyncObject, asyncState, asyncCallback ) {
net\System\Net\_StreamFramer.cs (1)
519: base( asyncObject, asyncState, savedAsyncCallback) {
net\System\Net\_TLSstream.cs (2)
454result = new LazyAsyncResult(this, null, null); 480handshakeResult = new LazyAsyncResult(m_Worker, null, new AsyncCallback(WakeupPendingIO));
net\System\Net\Cache\_CacheStreams.cs (2)
161:base (null, userState, userCallback) { 516:base (null, userState, userCallback) {
net\System\Net\Cache\_SingleItemRequestCache.cs (2)
350LazyAsyncResult ar = new LazyAsyncResult(null, state, callback); 519LazyAsyncResult ar = new LazyAsyncResult(null, state, callback);
net\System\Net\filewebrequest.cs (2)
242m_ReadAResult = new LazyAsyncResult(this, state, callback); 276m_WriteAResult = new LazyAsyncResult(this,state,callback);
net\System\Net\FtpWebRequest.cs (2)
639m_ReadAsyncResult = new LazyAsyncResult(null, null, null); 1179m_RequestCompleteAsyncResult = new LazyAsyncResult(null, null, null);
net\System\Net\HttpListenerRequest.cs (1)
60internal ListenerClientCertAsyncResult(object asyncObject, object userState, AsyncCallback callback, uint size) : 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\mail\BufferedReadStream.cs (1)
221internal ReadAsyncResult(BufferedReadStream parent, AsyncCallback callback, object state) : base(null,state,callback)
net\System\Net\mail\Message.cs (1)
277LazyAsyncResult result = new LazyAsyncResult(this,state,callback);
net\System\Net\mail\MimeBasePart.cs (1)
250internal MimePartAsyncResult(MimeBasePart part, object state, AsyncCallback callback):base(part,state,callback) {
net\System\Net\mail\MultiAsyncResult.cs (1)
10internal MultiAsyncResult(object context, AsyncCallback callback, object state) : base(context,state,callback)
net\System\Net\mail\QEncodedStream.cs (1)
366: base(null, state, callback)
net\System\Net\mail\QuotedPrintableStream.cs (1)
398internal WriteAsyncResult(QuotedPrintableStream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state) : base(null, state, callback)
net\System\Net\mail\smtpconnection.cs (1)
591base(null, state, callback)
net\System\Net\mail\SmtpReplyReaderFactory.cs (2)
378internal ReadLinesAsyncResult(SmtpReplyReaderFactory parent, AsyncCallback callback, object state) : base(null, state, callback) 383internal ReadLinesAsyncResult(SmtpReplyReaderFactory parent, AsyncCallback callback, object state, bool oneLine) : base(null, state, callback)
net\System\Net\mail\SmtpTransport.cs (1)
376: base(null, state, callback)
net\System\Net\SecureProtocols\_HelperAsyncResults.cs (2)
43:base (asyncObject, asyncState, asyncCallback) 55:base (asyncObject, asyncState, asyncCallback)
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);
net\System\Net\SecureProtocols\_SslStream.cs (2)
171LazyAsyncResult lazyResult = new LazyAsyncResult(this, asyncState, asyncCallback); 181LazyAsyncResult lazyResult = new LazyAsyncResult(this, asyncState, asyncCallback);
net\System\Net\SecureProtocols\NegotiateStream.cs (2)
156LazyAsyncResult result = new LazyAsyncResult(_NegoState, asyncState, asyncCallback); 247LazyAsyncResult result = new LazyAsyncResult(_NegoState, asyncState, asyncCallback);
net\System\Net\SecureProtocols\SslStream.cs (2)
167LazyAsyncResult result = new LazyAsyncResult(_SslState, asyncState, asyncCallback); 228LazyAsyncResult result = new LazyAsyncResult(_SslState, asyncState, asyncCallback);