Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / ComponentModel / RunWorkerCompletedEventArgs.cs / 1 / RunWorkerCompletedEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System.Security.Permissions; [HostProtection(SharedState = true)] public class RunWorkerCompletedEventArgs : AsyncCompletedEventArgs { private object result; public RunWorkerCompletedEventArgs(object result, Exception error, bool cancelled) : base(error, cancelled, null) { this.result = result; } public object Result { get { base.RaiseExceptionIfNecessary(); return result; } } // Hide from editor, since never used. [ Browsable(false), EditorBrowsable(EditorBrowsableState.Never) ] public new object UserState { get { return base.UserState; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System.Security.Permissions; [HostProtection(SharedState = true)] public class RunWorkerCompletedEventArgs : AsyncCompletedEventArgs { private object result; public RunWorkerCompletedEventArgs(object result, Exception error, bool cancelled) : base(error, cancelled, null) { this.result = result; } public object Result { get { base.RaiseExceptionIfNecessary(); return result; } } // Hide from editor, since never used. [ Browsable(false), EditorBrowsable(EditorBrowsableState.Never) ] public new object UserState { get { return base.UserState; } } } } // 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
- LineSegment.cs
- LocatorPart.cs
- BaseValidator.cs
- MethodBody.cs
- SafeProcessHandle.cs
- OdbcConnectionPoolProviderInfo.cs
- TargetException.cs
- ContentFilePart.cs
- ForceCopyBuildProvider.cs
- commandenforcer.cs
- ImageList.cs
- Certificate.cs
- IndexedWhereQueryOperator.cs
- LinkClickEvent.cs
- ReadOnlyDictionary.cs
- ArithmeticLiteral.cs
- SchemaElementLookUpTable.cs
- TakeQueryOptionExpression.cs
- DescendantOverDescendantQuery.cs
- XmlSchemaProviderAttribute.cs
- MessageLoggingElement.cs
- InputBinding.cs
- BindingOperations.cs
- ExpressionEditorSheet.cs
- SchemaExporter.cs
- HtmlGenericControl.cs
- EUCJPEncoding.cs
- X509Utils.cs
- Int16Converter.cs
- TextEditorDragDrop.cs
- MSAAWinEventWrap.cs
- PersistChildrenAttribute.cs
- XXXOnTypeBuilderInstantiation.cs
- AutoResetEvent.cs
- PathSegment.cs
- ContentPresenter.cs
- HttpListenerException.cs
- ControlAdapter.cs
- XmlSchemas.cs
- TemplateInstanceAttribute.cs
- SelectionUIService.cs
- RectIndependentAnimationStorage.cs
- XamlFxTrace.cs
- securestring.cs
- AsmxEndpointPickerExtension.cs
- EnumBuilder.cs
- Vector3DAnimationBase.cs
- StatusBarItem.cs
- NonBatchDirectoryCompiler.cs
- AnnotationMap.cs
- ProfileModule.cs
- RuntimeArgumentHandle.cs
- XmlDataSourceNodeDescriptor.cs
- PeerDuplexChannel.cs
- ListControl.cs
- RulePatternOps.cs
- RepeaterItem.cs
- Propagator.Evaluator.cs
- InvokeProviderWrapper.cs
- PageSetupDialog.cs
- TextEditorParagraphs.cs
- InternalDispatchObject.cs
- AuthenticationException.cs
- FacetDescription.cs
- TailPinnedEventArgs.cs
- XmlCustomFormatter.cs
- UnsafeNativeMethods.cs
- SequentialOutput.cs
- ObjectConverter.cs
- FigureHelper.cs
- ObjectContextServiceProvider.cs
- EntityDataSourceContextCreatedEventArgs.cs
- GridViewCellAutomationPeer.cs
- ClientScriptManager.cs
- Int32Rect.cs
- ContentControl.cs
- StatusBarPanelClickEvent.cs
- SoapReflectionImporter.cs
- ZipIOLocalFileBlock.cs
- Constants.cs
- SmtpClient.cs
- Point3DValueSerializer.cs
- HTMLTextWriter.cs
- SamlNameIdentifierClaimResource.cs
- SuppressMessageAttribute.cs
- RequestQueue.cs
- VerificationAttribute.cs
- ISessionStateStore.cs
- ColumnMapCopier.cs
- SqlDataAdapter.cs
- InlineCollection.cs
- ActivityInfo.cs
- StrokeNodeOperations2.cs
- ClientSettings.cs
- UITypeEditor.cs
- SymbolEqualComparer.cs
- MappingMetadataHelper.cs
- CompressedStack.cs
- ContentElementAutomationPeer.cs
- ResponseBodyWriter.cs