Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- ConsoleKeyInfo.cs
- complextypematerializer.cs
- QueryOutputWriter.cs
- ObjectComplexPropertyMapping.cs
- XmlnsDictionary.cs
- InfoCardServiceInstallComponent.cs
- Monitor.cs
- EdmScalarPropertyAttribute.cs
- Dictionary.cs
- ConfigurationFileMap.cs
- XmlDataFileEditor.cs
- UmAlQuraCalendar.cs
- SiteMapDataSourceView.cs
- RectangleF.cs
- WmlPageAdapter.cs
- ActivityDesignerResources.cs
- DataGridTable.cs
- ListView.cs
- DataGridViewCellStateChangedEventArgs.cs
- OutgoingWebResponseContext.cs
- InputBinding.cs
- BinaryParser.cs
- ConstNode.cs
- CellLabel.cs
- PartialList.cs
- FontWeightConverter.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- CommandEventArgs.cs
- HGlobalSafeHandle.cs
- MethodSet.cs
- XmlSchemaSimpleType.cs
- Geometry3D.cs
- CompilerGeneratedAttribute.cs
- LinkGrep.cs
- SystemIPGlobalStatistics.cs
- CompiledAction.cs
- ContentHostHelper.cs
- Section.cs
- WMICapabilities.cs
- SQLRoleProvider.cs
- ClientSettingsStore.cs
- Mutex.cs
- Property.cs
- ObjectDataSourceEventArgs.cs
- ImageInfo.cs
- UrlSyndicationContent.cs
- BaseParser.cs
- ParenthesizePropertyNameAttribute.cs
- SelectionEditingBehavior.cs
- StorageInfo.cs
- ResourcesBuildProvider.cs
- SimpleApplicationHost.cs
- BitmapImage.cs
- PrtCap_Reader.cs
- X509CertificateCollection.cs
- BatchParser.cs
- DigitalSignatureProvider.cs
- Mouse.cs
- Expression.cs
- AcceleratedTokenProviderState.cs
- KeyValuePairs.cs
- PropertySourceInfo.cs
- CompositionTarget.cs
- TabControlCancelEvent.cs
- Quad.cs
- _OverlappedAsyncResult.cs
- ControlParameter.cs
- BooleanFunctions.cs
- QilTargetType.cs
- BamlLocalizableResourceKey.cs
- Array.cs
- AgileSafeNativeMemoryHandle.cs
- ExtensibleClassFactory.cs
- XmlChoiceIdentifierAttribute.cs
- OdbcConnection.cs
- ProjectionPathBuilder.cs
- SingleSelectRootGridEntry.cs
- LineInfo.cs
- ConfigurationStrings.cs
- ellipse.cs
- DataTableMappingCollection.cs
- UnknownExceptionActionHelper.cs
- MenuCommand.cs
- ArrayConverter.cs
- IChannel.cs
- WindowsAuthenticationEventArgs.cs
- DtrList.cs
- XmlIgnoreAttribute.cs
- LocatorGroup.cs
- WizardForm.cs
- AdRotator.cs
- ArraySubsetEnumerator.cs
- DoubleAnimationBase.cs
- EntityDataSourceState.cs
- SafeLibraryHandle.cs
- PerformanceCounterPermissionEntry.cs
- AuthenticationModulesSection.cs
- BuildProviderCollection.cs
- PassportIdentity.cs
- CellCreator.cs