Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ToolTip.cs
- GeneralTransform3DTo2DTo3D.cs
- ReferenceEqualityComparer.cs
- PlatformCulture.cs
- GridViewRowCollection.cs
- Grid.cs
- BinaryWriter.cs
- NavigationFailedEventArgs.cs
- TrackingProfile.cs
- WebBrowser.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- WebPartConnectionsDisconnectVerb.cs
- JsonSerializer.cs
- XmlName.cs
- BitmapCodecInfoInternal.cs
- PackageRelationship.cs
- JsonDataContract.cs
- InitialServerConnectionReader.cs
- LessThan.cs
- PropVariant.cs
- ProbeMatches11.cs
- PolicyStatement.cs
- ComponentConverter.cs
- ResourceProviderFactory.cs
- ParserHooks.cs
- Blend.cs
- TailCallAnalyzer.cs
- HybridDictionary.cs
- EntityKeyElement.cs
- DescendantOverDescendantQuery.cs
- FrameworkRichTextComposition.cs
- PolyBezierSegmentFigureLogic.cs
- KeyNotFoundException.cs
- TriggerBase.cs
- XsltConvert.cs
- Buffer.cs
- ClearCollection.cs
- PatternMatcher.cs
- WindowsGraphics2.cs
- CodeIdentifier.cs
- AnimationLayer.cs
- DataGridTextBox.cs
- ItemsControlAutomationPeer.cs
- DataGridColumnCollectionEditor.cs
- DefaultAsyncDataDispatcher.cs
- MediaTimeline.cs
- TypeUsageBuilder.cs
- NegatedCellConstant.cs
- __ConsoleStream.cs
- ValidateNames.cs
- followingquery.cs
- ScriptManager.cs
- IndentTextWriter.cs
- UICuesEvent.cs
- TreeNodeClickEventArgs.cs
- InfiniteIntConverter.cs
- ToolboxItemCollection.cs
- TextEffect.cs
- BamlBinaryReader.cs
- DataGridViewColumnHeaderCell.cs
- StylusPlugInCollection.cs
- StrongNameUtility.cs
- ControlParameter.cs
- TextAction.cs
- ZoneLinkButton.cs
- FormViewInsertEventArgs.cs
- DataBoundControlHelper.cs
- DrawingCollection.cs
- StartUpEventArgs.cs
- CommandHelpers.cs
- CfgParser.cs
- MobilePage.cs
- TransformCryptoHandle.cs
- DPCustomTypeDescriptor.cs
- SafeNativeMethodsOther.cs
- DataControlFieldTypeEditor.cs
- SecurityTimestamp.cs
- HttpServerVarsCollection.cs
- DbModificationCommandTree.cs
- WebPartUserCapability.cs
- TcpClientSocketManager.cs
- NavigationExpr.cs
- InheritablePropertyChangeInfo.cs
- ZeroOpNode.cs
- FileDialogCustomPlace.cs
- ObjectResult.cs
- ListSortDescriptionCollection.cs
- DataRow.cs
- TextEditorParagraphs.cs
- WrapperSecurityCommunicationObject.cs
- MobileResource.cs
- TextBox.cs
- NotImplementedException.cs
- AssemblyFilter.cs
- SystemIcmpV4Statistics.cs
- FrameworkObject.cs
- ButtonStandardAdapter.cs
- UpdateCompiler.cs
- WeakKeyDictionary.cs
- RemoteWebConfigurationHost.cs