Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / WebBrowserProgressChangedEventHandler.cs / 1305376 / WebBrowserProgressChangedEventHandler.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { ////// /// public delegate void WebBrowserProgressChangedEventHandler(object sender, WebBrowserProgressChangedEventArgs e); ////// Delegate to the WebBrowser ProgressChanged event. /// ////// /// public class WebBrowserProgressChangedEventArgs : EventArgs { private long currentProgress; private long maximumProgress; ////// Provides data for the ///event. /// /// /// public WebBrowserProgressChangedEventArgs(long currentProgress, long maximumProgress) { this.currentProgress = currentProgress; this.maximumProgress = maximumProgress; } ////// Creates an instance of the ///class. /// /// /// public long CurrentProgress { get { return currentProgress; } } ////// Specifies current number of bytes donwloaded. CurrentProgress/MaximumProgress*100 = progress percentage. /// ////// /// public long MaximumProgress { get { return maximumProgress; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Specifies total number of bytes of item being downloaded. /// CurrentProgress/MaximumProgress*100 = progress percentage. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListItemCollection.cs
- FastEncoderStatics.cs
- FontEmbeddingManager.cs
- TableLayoutSettings.cs
- ModelPropertyCollectionImpl.cs
- DetailsViewActionList.cs
- MobileControlsSectionHandler.cs
- AvtEvent.cs
- ContainsRowNumberChecker.cs
- LocalizationComments.cs
- DataExchangeServiceBinder.cs
- DES.cs
- InvalidWMPVersionException.cs
- ByteStorage.cs
- SmtpCommands.cs
- PersonalizationProviderHelper.cs
- DataGridViewCellParsingEventArgs.cs
- ClientTarget.cs
- ItemsPresenter.cs
- BitmapEffectDrawing.cs
- Dictionary.cs
- BitmapEncoder.cs
- Emitter.cs
- WCFServiceClientProxyGenerator.cs
- InvokeFunc.cs
- InvalidCastException.cs
- RoleGroup.cs
- StateMachine.cs
- SynchronizedInputHelper.cs
- Transform3DGroup.cs
- remotingproxy.cs
- ByteStorage.cs
- BackgroundWorker.cs
- CalculatedColumn.cs
- XamlSerializerUtil.cs
- SqlFlattener.cs
- InputScopeManager.cs
- WebPartHelpVerb.cs
- List.cs
- FormViewRow.cs
- XmlPreloadedResolver.cs
- SqlDuplicator.cs
- ISAPIApplicationHost.cs
- InvalidOperationException.cs
- ReachDocumentSequenceSerializerAsync.cs
- Bezier.cs
- CommonObjectSecurity.cs
- XmlNamespaceMappingCollection.cs
- RowsCopiedEventArgs.cs
- ExtenderProvidedPropertyAttribute.cs
- DirectionalLight.cs
- DSACryptoServiceProvider.cs
- CodeDirectiveCollection.cs
- HotCommands.cs
- CornerRadius.cs
- XsdDuration.cs
- FlowLayoutPanelDesigner.cs
- Exception.cs
- PaperSource.cs
- DrawingBrush.cs
- WebProxyScriptElement.cs
- GridItemCollection.cs
- IdentityReference.cs
- DataObjectCopyingEventArgs.cs
- SafeSecurityHandles.cs
- InvalidCommandTreeException.cs
- SharedPersonalizationStateInfo.cs
- StorageEntitySetMapping.cs
- TransformationRules.cs
- XsltInput.cs
- SqlTransaction.cs
- XmlWrappingReader.cs
- ForceCopyBuildProvider.cs
- hebrewshape.cs
- bidPrivateBase.cs
- ReadContentAsBinaryHelper.cs
- ItemContainerProviderWrapper.cs
- DataGridViewIntLinkedList.cs
- X509ClientCertificateCredentialsElement.cs
- InfoCardBaseException.cs
- RootAction.cs
- IndexedWhereQueryOperator.cs
- As.cs
- MemberProjectedSlot.cs
- SAPIEngineTypes.cs
- Peer.cs
- BuildProviderAppliesToAttribute.cs
- SafeEventLogWriteHandle.cs
- LinearKeyFrames.cs
- QuaternionRotation3D.cs
- VisualSerializer.cs
- CompositeFontFamily.cs
- DefaultSerializationProviderAttribute.cs
- ConversionValidationRule.cs
- ListItemCollection.cs
- RemoteTokenFactory.cs
- ColorConvertedBitmap.cs
- DeploymentExceptionMapper.cs
- TemplatedMailWebEventProvider.cs
- GenericParameterDataContract.cs