Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / ProgressChangedEventArgs.cs / 1 / ProgressChangedEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System.Security.Permissions; [HostProtection(SharedState = true)] public class ProgressChangedEventArgs : EventArgs { private readonly int progressPercentage; private readonly object userState; public ProgressChangedEventArgs(int progressPercentage, object userState) { this.progressPercentage = progressPercentage; this.userState = userState; } [ SRDescription(SR.Async_ProgressChangedEventArgs_ProgressPercentage) ] public int ProgressPercentage { get { return progressPercentage; } } [ SRDescription(SR.Async_ProgressChangedEventArgs_UserState) ] public object UserState { get { return userState; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlNodeComparer.cs
- DrawingServices.cs
- BasePattern.cs
- COM2PictureConverter.cs
- DeriveBytes.cs
- HGlobalSafeHandle.cs
- TreeBuilderBamlTranslator.cs
- DefaultPerformanceCounters.cs
- WorkflowServiceAttributesTypeConverter.cs
- DescendentsWalker.cs
- XsdDataContractExporter.cs
- Point3DAnimationUsingKeyFrames.cs
- XmlTextReader.cs
- TextChangedEventArgs.cs
- AdvancedBindingPropertyDescriptor.cs
- ThemeableAttribute.cs
- HMACSHA512.cs
- LocationSectionRecord.cs
- TextTreeUndoUnit.cs
- AnimatedTypeHelpers.cs
- DataGridCaption.cs
- ListChunk.cs
- WindowsFormsLinkLabel.cs
- SHA512Managed.cs
- DefaultBinder.cs
- WebScriptClientGenerator.cs
- Package.cs
- CustomMenuItemCollection.cs
- ImportContext.cs
- SqlTransaction.cs
- PerspectiveCamera.cs
- coordinatorfactory.cs
- ISessionStateStore.cs
- ClusterRegistryConfigurationProvider.cs
- EditorBrowsableAttribute.cs
- MasterPageParser.cs
- SessionStateUtil.cs
- Codec.cs
- ApplicationInterop.cs
- InitializationEventAttribute.cs
- OleDbErrorCollection.cs
- NameTable.cs
- RichTextBoxConstants.cs
- NetworkStream.cs
- DataGridCellsPresenter.cs
- BitmapEffectInput.cs
- FormViewUpdatedEventArgs.cs
- DerivedKeySecurityToken.cs
- LayoutTableCell.cs
- ModelTreeManager.cs
- HandleExceptionArgs.cs
- ISAPIWorkerRequest.cs
- AssertSection.cs
- Delegate.cs
- HeaderCollection.cs
- CodeBlockBuilder.cs
- TrackBarRenderer.cs
- BaseTemplateParser.cs
- PlanCompilerUtil.cs
- KerberosRequestorSecurityToken.cs
- XmlSchemaValidationException.cs
- XmlMembersMapping.cs
- PeerApplication.cs
- Column.cs
- XsdDataContractExporter.cs
- COM2Enum.cs
- WebPartConnectionsConnectVerb.cs
- EngineSite.cs
- DrawListViewItemEventArgs.cs
- IItemContainerGenerator.cs
- HttpModulesSection.cs
- DebugView.cs
- FileSecurity.cs
- ContainerSelectorActiveEvent.cs
- DataStorage.cs
- ModuleConfigurationInfo.cs
- SelectionListComponentEditor.cs
- SimplePropertyEntry.cs
- UTF8Encoding.cs
- MethodImplAttribute.cs
- PersonalizablePropertyEntry.cs
- BulletedListEventArgs.cs
- ParallelEnumerable.cs
- Visitors.cs
- ResXFileRef.cs
- UInt16Storage.cs
- CommonDialog.cs
- RecipientInfo.cs
- DuplicateWaitObjectException.cs
- SoapExtensionImporter.cs
- DBSchemaRow.cs
- InlineUIContainer.cs
- EntityDataSourceViewSchema.cs
- LinqDataSourceDeleteEventArgs.cs
- MetadataPropertyCollection.cs
- CqlGenerator.cs
- RegexNode.cs
- LinearQuaternionKeyFrame.cs
- EntityDataSourceSelectingEventArgs.cs
- GetWinFXPath.cs