Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / HttpAsyncResult.cs / 2 / 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. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PointUtil.cs
- _SafeNetHandles.cs
- CreateUserWizardAutoFormat.cs
- RemoteWebConfigurationHostStream.cs
- TypedElement.cs
- NativeCppClassAttribute.cs
- System.Data.OracleClient_BID.cs
- ObjectManager.cs
- FlowLayoutSettings.cs
- TextRange.cs
- CodeIdentifiers.cs
- DescendantOverDescendantQuery.cs
- XmlTextReaderImpl.cs
- DescriptionAttribute.cs
- EqualityComparer.cs
- SchemaObjectWriter.cs
- NamedPipeTransportSecurityElement.cs
- OperationAbortedException.cs
- AuthenticationException.cs
- RelationshipSet.cs
- ResolveDuplexCD1AsyncResult.cs
- SequenceDesigner.cs
- DBCommand.cs
- SqlConnectionFactory.cs
- WebScriptMetadataMessage.cs
- CodeGenerationManager.cs
- GenericWebPart.cs
- DocumentPage.cs
- MetadataLocation.cs
- RegexBoyerMoore.cs
- XmlParserContext.cs
- CodeTypeConstructor.cs
- ResizingMessageFilter.cs
- COAUTHIDENTITY.cs
- WorkflowOperationAsyncResult.cs
- DescendantQuery.cs
- ConfigurationException.cs
- RowType.cs
- TableLayoutPanelCellPosition.cs
- DataSourceIDConverter.cs
- UnitySerializationHolder.cs
- BooleanExpr.cs
- BoolExpression.cs
- KeyConverter.cs
- MenuTracker.cs
- SystemIPv4InterfaceProperties.cs
- Point4D.cs
- tibetanshape.cs
- GCHandleCookieTable.cs
- WsdlInspector.cs
- XmlAttribute.cs
- DriveNotFoundException.cs
- WMICapabilities.cs
- LinkedResource.cs
- DataObjectEventArgs.cs
- SiteMapNode.cs
- RequestCachePolicy.cs
- TimeoutException.cs
- HttpRuntimeSection.cs
- TextMarkerSource.cs
- DashStyle.cs
- InvalidateEvent.cs
- ImageAutomationPeer.cs
- WinInetCache.cs
- AttributeData.cs
- PenLineCapValidation.cs
- Pointer.cs
- MatrixTransform.cs
- AutoScrollExpandMessageFilter.cs
- Rectangle.cs
- HwndHostAutomationPeer.cs
- ScriptMethodAttribute.cs
- WebPartConnectionsConfigureVerb.cs
- RoleBoolean.cs
- MappingException.cs
- SmiMetaDataProperty.cs
- ToolStripPanelSelectionGlyph.cs
- EditorZoneDesigner.cs
- ByteKeyFrameCollection.cs
- XamlNamespaceHelper.cs
- RedirectionProxy.cs
- updatecommandorderer.cs
- AlternateView.cs
- ClientApiGenerator.cs
- HttpException.cs
- CompositeFontFamily.cs
- PermissionSetTriple.cs
- SqlInfoMessageEvent.cs
- XmlSchemaAnnotation.cs
- CurrentTimeZone.cs
- AssemblyCacheEntry.cs
- connectionpool.cs
- HyperLinkStyle.cs
- CodeDomSerializerBase.cs
- EDesignUtil.cs
- KeyedHashAlgorithm.cs
- SmiEventStream.cs
- PasswordBoxAutomationPeer.cs
- COM2IPerPropertyBrowsingHandler.cs
- SyndicationFeed.cs