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
- dbdatarecord.cs
- HwndKeyboardInputProvider.cs
- wgx_sdk_version.cs
- _ProxyChain.cs
- documentsequencetextcontainer.cs
- XmlSerializableServices.cs
- OdbcPermission.cs
- Style.cs
- DriveInfo.cs
- TextServicesCompartment.cs
- RenderCapability.cs
- NodeFunctions.cs
- WebPartDisplayModeCancelEventArgs.cs
- ClientConvert.cs
- MetadataSource.cs
- Renderer.cs
- InfoCardSymmetricCrypto.cs
- ModelEditingScope.cs
- DataSetViewSchema.cs
- VersionConverter.cs
- DbDataReader.cs
- PointCollectionConverter.cs
- Odbc32.cs
- ContourSegment.cs
- ProxyManager.cs
- VisualBasicSettingsHandler.cs
- TypeConverters.cs
- DynamicActivityProperty.cs
- CompModSwitches.cs
- TraceSection.cs
- DataStreams.cs
- BehaviorDragDropEventArgs.cs
- DrawingGroup.cs
- WebException.cs
- Substitution.cs
- IODescriptionAttribute.cs
- GlobalEventManager.cs
- DetailsViewPageEventArgs.cs
- XsdBuilder.cs
- StyleHelper.cs
- StylusDownEventArgs.cs
- DataGridViewCellPaintingEventArgs.cs
- ParameterBuilder.cs
- mediapermission.cs
- SmtpDigestAuthenticationModule.cs
- EntityDesignerUtils.cs
- DeclaredTypeElementCollection.cs
- TextSearch.cs
- Convert.cs
- SmiContext.cs
- Int16AnimationBase.cs
- WebScriptServiceHostFactory.cs
- EntityCommand.cs
- MemberDescriptor.cs
- TypeSystemHelpers.cs
- XmlNavigatorFilter.cs
- EnumType.cs
- WindowsIdentity.cs
- ExpressionStringBuilder.cs
- HierarchicalDataBoundControl.cs
- GeneralTransform.cs
- WindowsEditBoxRange.cs
- WorkflowRuntimeServiceElement.cs
- NeedSkipTokenVisitor.cs
- ArgumentException.cs
- CdpEqualityComparer.cs
- InfiniteTimeSpanConverter.cs
- ToolStripLocationCancelEventArgs.cs
- Control.cs
- LocalizabilityAttribute.cs
- XmlFormatExtensionPointAttribute.cs
- EntityDataSourceDataSelection.cs
- COM2PropertyDescriptor.cs
- XPathItem.cs
- Pair.cs
- MailMessage.cs
- XmlDataSourceDesigner.cs
- XmlNamedNodeMap.cs
- ScriptingProfileServiceSection.cs
- CultureSpecificCharacterBufferRange.cs
- ProfileSettings.cs
- TypeConverterMarkupExtension.cs
- Pair.cs
- ArglessEventHandlerProxy.cs
- TreeNode.cs
- BindingWorker.cs
- PopOutPanel.cs
- ProcessHostMapPath.cs
- ReadOnlyMetadataCollection.cs
- BaseProcessor.cs
- TemplateField.cs
- XPathAncestorQuery.cs
- MgmtConfigurationRecord.cs
- TransactionManager.cs
- KeyManager.cs
- PartialTrustVisibleAssembliesSection.cs
- AppSecurityManager.cs
- SQLDateTimeStorage.cs
- Helpers.cs
- DbMetaDataCollectionNames.cs