Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / HttpAsyncResult.cs / 1 / HttpAsyncResult.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * ASP.NET simple internal implementation of IAsyncResult * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web { using System; using System.Threading; internal class HttpAsyncResult : IAsyncResult { private AsyncCallback _callback; private Object _asyncState; private bool _completed; private bool _completedSynchronously; private Object _result; private Exception _error; // pipeline support private RequestNotificationStatus _status; /* * Constructor with pending result */ internal HttpAsyncResult(AsyncCallback cb, Object state) { _callback = cb; _asyncState = state; _status = RequestNotificationStatus.Continue; } /* * Constructor with known result */ internal HttpAsyncResult(AsyncCallback cb, Object state, bool completed, Object result, Exception error) { _callback = cb; _asyncState = state; _completed = completed; _completedSynchronously = completed; _result = result; _error = error; _status = RequestNotificationStatus.Continue; if (_completed && _callback != null) _callback(this); } internal void SetComplete() { _completed = true; } /* * Helper method to process completions */ internal void Complete(bool synchronous, Object result, Exception error, RequestNotificationStatus status) { _completed = true; _completedSynchronously = synchronous; _result = result; _error = error; _status = status; if (_callback != null) _callback(this); } internal void Complete(bool synchronous, Object result, Exception error) { Complete(synchronous, result, error, RequestNotificationStatus.Continue); } /* * Helper method to implement End call to async method */ internal Object End() { if (_error != null) throw new HttpException(null, _error); return _result; } // // Properties that are not part of IAsyncResult // internal Exception Error { get { return _error;}} internal RequestNotificationStatus Status { get { return _status; } } // // IAsyncResult implementation // public bool IsCompleted { get { return _completed;}} public bool CompletedSynchronously { get { return _completedSynchronously;}} public Object AsyncState { get { return _asyncState;}} public WaitHandle AsyncWaitHandle { get { return null;}} // wait not supported } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * ASP.NET simple internal implementation of IAsyncResult * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web { using System; using System.Threading; internal class HttpAsyncResult : IAsyncResult { private AsyncCallback _callback; private Object _asyncState; private bool _completed; private bool _completedSynchronously; private Object _result; private Exception _error; // pipeline support private RequestNotificationStatus _status; /* * Constructor with pending result */ internal HttpAsyncResult(AsyncCallback cb, Object state) { _callback = cb; _asyncState = state; _status = RequestNotificationStatus.Continue; } /* * Constructor with known result */ internal HttpAsyncResult(AsyncCallback cb, Object state, bool completed, Object result, Exception error) { _callback = cb; _asyncState = state; _completed = completed; _completedSynchronously = completed; _result = result; _error = error; _status = RequestNotificationStatus.Continue; if (_completed && _callback != null) _callback(this); } internal void SetComplete() { _completed = true; } /* * Helper method to process completions */ internal void Complete(bool synchronous, Object result, Exception error, RequestNotificationStatus status) { _completed = true; _completedSynchronously = synchronous; _result = result; _error = error; _status = status; if (_callback != null) _callback(this); } internal void Complete(bool synchronous, Object result, Exception error) { Complete(synchronous, result, error, RequestNotificationStatus.Continue); } /* * Helper method to implement End call to async method */ internal Object End() { if (_error != null) throw new HttpException(null, _error); return _result; } // // Properties that are not part of IAsyncResult // internal Exception Error { get { return _error;}} internal RequestNotificationStatus Status { get { return _status; } } // // IAsyncResult implementation // public bool IsCompleted { get { return _completed;}} public bool CompletedSynchronously { get { return _completedSynchronously;}} public Object AsyncState { get { return _asyncState;}} public WaitHandle AsyncWaitHandle { get { return null;}} // wait not supported } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RootBrowserWindowAutomationPeer.cs
- SizeFConverter.cs
- HelpKeywordAttribute.cs
- IntPtr.cs
- HtmlInputRadioButton.cs
- ProgressBarBrushConverter.cs
- HttpListenerContext.cs
- EventProviderClassic.cs
- InvalidOperationException.cs
- SiteMapNodeItem.cs
- PropertyPathConverter.cs
- Filter.cs
- XamlRtfConverter.cs
- TracePayload.cs
- SdlChannelSink.cs
- Monitor.cs
- filewebresponse.cs
- GenerateTemporaryAssemblyTask.cs
- EpmTargetPathSegment.cs
- HostedTransportConfigurationBase.cs
- FunctionImportMapping.cs
- ConnectionProviderAttribute.cs
- InkCanvasSelection.cs
- XmlSchemaSimpleContentRestriction.cs
- MappingException.cs
- UriScheme.cs
- ServiceObjectContainer.cs
- FontUnitConverter.cs
- EraserBehavior.cs
- PopOutPanel.cs
- ADMembershipUser.cs
- ItemChangedEventArgs.cs
- _StreamFramer.cs
- WebHttpBindingCollectionElement.cs
- EpmHelper.cs
- XmlCollation.cs
- IntranetCredentialPolicy.cs
- PopupRootAutomationPeer.cs
- X509CertificateCollection.cs
- InvalidPrinterException.cs
- webproxy.cs
- PngBitmapDecoder.cs
- UInt32Storage.cs
- ConnectionPoint.cs
- followingsibling.cs
- Typeface.cs
- RenamedEventArgs.cs
- util.cs
- DefinitionUpdate.cs
- SystemInfo.cs
- SqlRewriteScalarSubqueries.cs
- LogRecordSequence.cs
- EntityDataSourceMemberPath.cs
- PersianCalendar.cs
- Lookup.cs
- Roles.cs
- EntityDataSourceColumn.cs
- ModelChangedEventArgsImpl.cs
- UndoEngine.cs
- MbpInfo.cs
- OletxEnlistment.cs
- InitializerFacet.cs
- AdjustableArrowCap.cs
- EndOfStreamException.cs
- LocalizableAttribute.cs
- Margins.cs
- WebServiceClientProxyGenerator.cs
- DataGridViewAccessibleObject.cs
- ResourceSet.cs
- QueueProcessor.cs
- EntityProxyTypeInfo.cs
- InputScopeAttribute.cs
- TextTreePropertyUndoUnit.cs
- InfoCardServiceInstallComponent.cs
- StateDesigner.Layouts.cs
- NamespaceInfo.cs
- ConfigurationSectionGroupCollection.cs
- FlowDocumentPageViewerAutomationPeer.cs
- TransformerConfigurationWizardBase.cs
- ButtonBaseAdapter.cs
- InternalDispatchObject.cs
- WebPart.cs
- GridViewCancelEditEventArgs.cs
- CustomPeerResolverService.cs
- _HTTPDateParse.cs
- SessionSwitchEventArgs.cs
- ContextBase.cs
- InteropBitmapSource.cs
- DistributedTransactionPermission.cs
- BaseDataBoundControl.cs
- ObjectPropertyMapping.cs
- CallbackValidatorAttribute.cs
- QilStrConcatenator.cs
- EntityRecordInfo.cs
- AsyncOperationManager.cs
- Substitution.cs
- _KerberosClient.cs
- ShutDownListener.cs
- FormsIdentity.cs
- Quaternion.cs