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
- PersonalizationStateQuery.cs
- WSHttpSecurity.cs
- CreateUserErrorEventArgs.cs
- TdsParserSafeHandles.cs
- LayoutSettings.cs
- SetterTriggerConditionValueConverter.cs
- ResXResourceWriter.cs
- QilScopedVisitor.cs
- UTF32Encoding.cs
- ITextView.cs
- ApplicationFileCodeDomTreeGenerator.cs
- EndOfStreamException.cs
- WebReferencesBuildProvider.cs
- ServiceProviders.cs
- MergablePropertyAttribute.cs
- RunClient.cs
- CompositeControl.cs
- FixedSOMPage.cs
- EncoderBestFitFallback.cs
- QilValidationVisitor.cs
- NativeMethods.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- ToolboxItem.cs
- ReadOnlyNameValueCollection.cs
- ConfigurationFileMap.cs
- FixedSOMTextRun.cs
- CalendarBlackoutDatesCollection.cs
- ADConnectionHelper.cs
- CounterCreationData.cs
- ScriptModule.cs
- DesignBindingEditor.cs
- x509utils.cs
- StylusPointPropertyInfoDefaults.cs
- AbandonedMutexException.cs
- ParallelQuery.cs
- Pkcs9Attribute.cs
- TabControl.cs
- BeginEvent.cs
- DescendantBaseQuery.cs
- PropertyValueUIItem.cs
- WsdlWriter.cs
- ConvertTextFrag.cs
- SqlConnectionHelper.cs
- XmlSerializerVersionAttribute.cs
- Symbol.cs
- DataGridViewColumnHeaderCell.cs
- MemberPath.cs
- Stream.cs
- MissingMethodException.cs
- CellParaClient.cs
- NameValueFileSectionHandler.cs
- ReadOnlyDataSourceView.cs
- PatternMatchRules.cs
- DynamicQueryableWrapper.cs
- TemplateField.cs
- SelectedDatesCollection.cs
- DataTableTypeConverter.cs
- ByteStack.cs
- DocumentCollection.cs
- ArrayWithOffset.cs
- SimpleHandlerBuildProvider.cs
- CodeIdentifier.cs
- ClientData.cs
- GeneralTransformGroup.cs
- SafeCryptContextHandle.cs
- XmlFormatWriterGenerator.cs
- AssertHelper.cs
- BitFlagsGenerator.cs
- SynchronousChannelMergeEnumerator.cs
- VisualStateGroup.cs
- Rules.cs
- SchemaNames.cs
- SqlNamer.cs
- HttpModulesSection.cs
- contentDescriptor.cs
- XmlSchemaAttribute.cs
- PlainXmlSerializer.cs
- EntityException.cs
- GetResponse.cs
- XmlSiteMapProvider.cs
- XmlSchemaAnyAttribute.cs
- ParserExtension.cs
- HtmlFormParameterWriter.cs
- ScrollBarRenderer.cs
- DecimalConverter.cs
- QueryTaskGroupState.cs
- TokenBasedSetEnumerator.cs
- SmiRecordBuffer.cs
- TextRangeEdit.cs
- TypeBuilderInstantiation.cs
- HyperlinkAutomationPeer.cs
- DataKeyCollection.cs
- SupportingTokenBindingElement.cs
- HtmlEmptyTagControlBuilder.cs
- Base64Stream.cs
- DebugView.cs
- MembershipUser.cs
- GridEntry.cs
- KnownBoxes.cs
- ConditionalAttribute.cs