Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / DoWorkEventArgs.cs / 1 / 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; }
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PassportAuthenticationModule.cs
- GeneralTransform.cs
- VarInfo.cs
- BitmapEncoder.cs
- SQLDecimalStorage.cs
- XmlDeclaration.cs
- ValidationVisibilityAttribute.cs
- SelectionItemProviderWrapper.cs
- AuthenticationModulesSection.cs
- AuthenticateEventArgs.cs
- XmlBinaryReaderSession.cs
- SqlAliasesReferenced.cs
- MethodBuilder.cs
- RowToParametersTransformer.cs
- SystemResourceHost.cs
- SafeHandle.cs
- ServiceContractGenerationContext.cs
- SecurityState.cs
- Journaling.cs
- XmlSubtreeReader.cs
- BitmapDownload.cs
- MultipartContentParser.cs
- Vector3DCollection.cs
- ObjectDataProvider.cs
- ProjectedSlot.cs
- ScriptDescriptor.cs
- CatalogPartDesigner.cs
- DataList.cs
- GenericUI.cs
- WindowVisualStateTracker.cs
- TypeExtensionConverter.cs
- RichTextBoxAutomationPeer.cs
- Visual3D.cs
- CompilerParameters.cs
- HttpRawResponse.cs
- DoubleIndependentAnimationStorage.cs
- ApplicationBuildProvider.cs
- ValidationErrorCollection.cs
- TrustLevel.cs
- CodeDomSerializerException.cs
- BindingNavigatorDesigner.cs
- ComboBox.cs
- WebServiceEnumData.cs
- ServicePointManager.cs
- Point3DAnimation.cs
- RewritingSimplifier.cs
- TreeViewCancelEvent.cs
- QueryConverter.cs
- FontUnitConverter.cs
- Timer.cs
- NegatedCellConstant.cs
- GridProviderWrapper.cs
- HttpSysSettings.cs
- AsymmetricSignatureDeformatter.cs
- AsymmetricKeyExchangeDeformatter.cs
- ServiceDescriptionReflector.cs
- InternalBufferOverflowException.cs
- MemberHolder.cs
- DataGridItemCollection.cs
- ConsoleTraceListener.cs
- WpfWebRequestHelper.cs
- Form.cs
- ArgIterator.cs
- DbModificationCommandTree.cs
- Bezier.cs
- LayoutEvent.cs
- XmlAtomicValue.cs
- TextRangeEditTables.cs
- HandleCollector.cs
- XamlSerializationHelper.cs
- DirtyTextRange.cs
- Brush.cs
- DataSourceExpression.cs
- ComponentResourceManager.cs
- ThreadExceptionDialog.cs
- Interfaces.cs
- SymLanguageType.cs
- AbstractSvcMapFileLoader.cs
- QilDataSource.cs
- BuiltInExpr.cs
- connectionpool.cs
- PseudoWebRequest.cs
- FunctionMappingTranslator.cs
- WmfPlaceableFileHeader.cs
- WriteFileContext.cs
- LocationSectionRecord.cs
- AsyncSerializedWorker.cs
- InputLanguageCollection.cs
- TrailingSpaceComparer.cs
- CookieParameter.cs
- TransformedBitmap.cs
- WindowsSysHeader.cs
- TrackingProfile.cs
- ContainerParagraph.cs
- CompilerError.cs
- Label.cs
- ExitEventArgs.cs
- ScriptingScriptResourceHandlerSection.cs
- ThreadLocal.cs
- CorrelationValidator.cs