Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / DoWorkEventArgs.cs / 1305376 / DoWorkEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System.Security.Permissions; [HostProtection(SharedState = true)] public class DoWorkEventArgs : CancelEventArgs { private object result; private object argument; public DoWorkEventArgs(object argument) { this.argument = argument; } [ SRDescription(SR.BackgroundWorker_DoWorkEventArgs_Argument) ] public object Argument { get { return argument; } } [ SRDescription(SR.BackgroundWorker_DoWorkEventArgs_Result) ] public object Result { get { return result; } set { result = value; } } } } // 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
- TableChangeProcessor.cs
- BamlLocalizableResourceKey.cs
- HitTestFilterBehavior.cs
- SafeEventLogWriteHandle.cs
- SqlPersistenceProviderFactory.cs
- TemplateControlBuildProvider.cs
- HtmlListAdapter.cs
- ChildTable.cs
- TextParagraph.cs
- SourceInterpreter.cs
- Configuration.cs
- OdbcError.cs
- CompatibleComparer.cs
- QueryConverter.cs
- LicenseProviderAttribute.cs
- LogSwitch.cs
- ThreadLocal.cs
- Size.cs
- XmlEncoding.cs
- ExeContext.cs
- AttributeUsageAttribute.cs
- AppDomain.cs
- XmlQueryStaticData.cs
- BuildProvider.cs
- ClientSideProviderDescription.cs
- GenericAuthenticationEventArgs.cs
- DefaultTypeArgumentAttribute.cs
- SocketAddress.cs
- COM2ComponentEditor.cs
- COAUTHIDENTITY.cs
- RealProxy.cs
- TraceSource.cs
- CustomErrorCollection.cs
- XsltContext.cs
- X509UI.cs
- FirstMatchCodeGroup.cs
- RawStylusInputCustomData.cs
- IsolatedStorageFile.cs
- Metadata.cs
- UdpDuplexChannel.cs
- ToolstripProfessionalRenderer.cs
- Invariant.cs
- OdbcEnvironment.cs
- CompilationRelaxations.cs
- IndependentAnimationStorage.cs
- AppSettingsReader.cs
- User.cs
- TextSimpleMarkerProperties.cs
- ContainsSearchOperator.cs
- TargetConverter.cs
- FixedBufferAttribute.cs
- DropDownButton.cs
- ChangesetResponse.cs
- SuspendDesigner.cs
- WebPartDeleteVerb.cs
- LinkTarget.cs
- ContentType.cs
- Helpers.cs
- QilFactory.cs
- WebPartConnectionsCancelEventArgs.cs
- ColumnHeaderConverter.cs
- MimeTypeMapper.cs
- InlineObject.cs
- TypeToken.cs
- ButtonColumn.cs
- DesignerUtility.cs
- BinaryQueryOperator.cs
- Container.cs
- Soap.cs
- DataRowComparer.cs
- SqlDataSourceDesigner.cs
- ManagementClass.cs
- SqlWebEventProvider.cs
- DataStreamFromComStream.cs
- ToolStripItemImageRenderEventArgs.cs
- DateBoldEvent.cs
- Match.cs
- TouchesCapturedWithinProperty.cs
- KeyNotFoundException.cs
- ListViewInsertionMark.cs
- DataKey.cs
- XamlPathDataSerializer.cs
- ObservableCollectionDefaultValueFactory.cs
- MarkupCompilePass2.cs
- PropertyGroupDescription.cs
- DiscoveryOperationContextExtension.cs
- GenericIdentity.cs
- DefaultAssemblyResolver.cs
- XPathScanner.cs
- Guid.cs
- OutOfMemoryException.cs
- XsdCachingReader.cs
- OutputCacheSettings.cs
- TripleDESCryptoServiceProvider.cs
- HtmlInputText.cs
- PerfCounters.cs
- FrameworkElement.cs
- Sequence.cs
- CollectionEditor.cs
- DocumentGridContextMenu.cs