Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- CompletionCallbackWrapper.cs
- TagPrefixInfo.cs
- NameValuePair.cs
- OrderedDictionary.cs
- XPathPatternParser.cs
- ChannelServices.cs
- ConfigurationSectionGroup.cs
- DbConnectionPool.cs
- SQLInt32Storage.cs
- Light.cs
- CaseInsensitiveHashCodeProvider.cs
- WindowsListViewItem.cs
- CompositeScriptReference.cs
- CompressedStack.cs
- IteratorDescriptor.cs
- CommonDialog.cs
- PeerResolverBindingElement.cs
- KeyedPriorityQueue.cs
- DetailsViewModeEventArgs.cs
- DefaultEventAttribute.cs
- TextEditor.cs
- DynamicRendererThreadManager.cs
- XsltSettings.cs
- NameGenerator.cs
- CaseStatement.cs
- TextElementCollectionHelper.cs
- RuleSetDialog.cs
- MessageSecurityOverHttpElement.cs
- Win32.cs
- CellParagraph.cs
- GlobalizationAssembly.cs
- OdbcException.cs
- DefaultBindingPropertyAttribute.cs
- DBConcurrencyException.cs
- GridView.cs
- URI.cs
- ViewEvent.cs
- ToolStripGripRenderEventArgs.cs
- SettingsProviderCollection.cs
- FileNotFoundException.cs
- CellLabel.cs
- DiagnosticTrace.cs
- ListItemConverter.cs
- MarkupExtensionParser.cs
- Wizard.cs
- StylusButton.cs
- MergePropertyDescriptor.cs
- CreateUserWizardDesigner.cs
- ServiceModelConfigurationSectionCollection.cs
- SoapExtensionImporter.cs
- XPathMessageFilterTable.cs
- ClickablePoint.cs
- ResourceReader.cs
- ViewCellSlot.cs
- LocalizableResourceBuilder.cs
- XmlEnumAttribute.cs
- AssemblyBuilderData.cs
- ApplyImportsAction.cs
- Msmq.cs
- InvalidComObjectException.cs
- SortDescription.cs
- DateTimeOffset.cs
- ScriptResourceHandler.cs
- InternalBufferOverflowException.cs
- PolyLineSegment.cs
- UseLicense.cs
- TrackBarRenderer.cs
- WindowsIPAddress.cs
- QueryTreeBuilder.cs
- ProfileSettings.cs
- ParagraphVisual.cs
- AppSettingsExpressionEditor.cs
- Win32Native.cs
- StylusPoint.cs
- BuildProvider.cs
- ObjectDataSourceSelectingEventArgs.cs
- FixedTextPointer.cs
- BindingMemberInfo.cs
- DataRecordObjectView.cs
- XmlElementList.cs
- TriggerBase.cs
- ProtocolsConfigurationEntry.cs
- TrustSection.cs
- EdmFunctions.cs
- SingleObjectCollection.cs
- AssemblyCollection.cs
- XmlILStorageConverter.cs
- SchemaImporter.cs
- PrinterSettings.cs
- TripleDES.cs
- AttachedProperty.cs
- Symbol.cs
- DbgUtil.cs
- RemotingConfigParser.cs
- TextPattern.cs
- PointConverter.cs
- VersionedStreamOwner.cs
- SHA512CryptoServiceProvider.cs
- AttachInfo.cs
- ProcessHostConfigUtils.cs