Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / WebBrowserProgressChangedEventHandler.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- ContextMarshalException.cs
- ResolvedKeyFrameEntry.cs
- ListViewItemMouseHoverEvent.cs
- autovalidator.cs
- SkewTransform.cs
- ErrorCodes.cs
- XmlObjectSerializerReadContextComplexJson.cs
- SingleTagSectionHandler.cs
- EntityDataSourceDataSelection.cs
- Font.cs
- OleDbDataReader.cs
- LowerCaseStringConverter.cs
- CachedFontFace.cs
- MeshGeometry3D.cs
- Resources.Designer.cs
- XmlQuerySequence.cs
- ObsoleteAttribute.cs
- WebPartConnectionsCloseVerb.cs
- DataGridViewCellStateChangedEventArgs.cs
- EnumConverter.cs
- DataGridItemEventArgs.cs
- XXXOnTypeBuilderInstantiation.cs
- RegexNode.cs
- SchemaImporterExtensionsSection.cs
- WebPartChrome.cs
- EventLogger.cs
- AttributeCollection.cs
- ReadWriteObjectLock.cs
- TextElement.cs
- ClientData.cs
- RuleSettingsCollection.cs
- TcpActivation.cs
- TextParaClient.cs
- LinqDataSourceInsertEventArgs.cs
- ObjectHandle.cs
- ColumnProvider.cs
- WindowsTokenRoleProvider.cs
- FixedMaxHeap.cs
- OutputCacheSettingsSection.cs
- VariantWrapper.cs
- BaseValidator.cs
- PropertyValidationContext.cs
- UpdateTracker.cs
- Vertex.cs
- documentsequencetextview.cs
- _SecureChannel.cs
- TimerElapsedEvenArgs.cs
- PreservationFileWriter.cs
- DataGridItemCollection.cs
- ErrorLog.cs
- FlowPosition.cs
- TypeBuilderInstantiation.cs
- SimpleRecyclingCache.cs
- HandleExceptionArgs.cs
- TagMapCollection.cs
- PreloadHost.cs
- Utils.cs
- BroadcastEventHelper.cs
- XmlSerializationReader.cs
- XmlComment.cs
- SignatureHelper.cs
- WebPartDisplayMode.cs
- DelegatingHeader.cs
- graph.cs
- OleDbTransaction.cs
- isolationinterop.cs
- OrderByBuilder.cs
- GetCardDetailsRequest.cs
- RetrieveVirtualItemEventArgs.cs
- WebRequest.cs
- EFAssociationProvider.cs
- SqlUDTStorage.cs
- MSG.cs
- CheckBox.cs
- ProcessInfo.cs
- TakeQueryOptionExpression.cs
- Int32AnimationBase.cs
- TextSelectionProcessor.cs
- WebPartDeleteVerb.cs
- LambdaCompiler.Unary.cs
- Socket.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- WebPartCollection.cs
- WebPartMinimizeVerb.cs
- DispatcherTimer.cs
- DataGridViewRowPrePaintEventArgs.cs
- ActivityLocationReferenceEnvironment.cs
- DrawingGroupDrawingContext.cs
- TemplatedMailWebEventProvider.cs
- _Rfc2616CacheValidators.cs
- InlinedAggregationOperator.cs
- ISAPIWorkerRequest.cs
- MultipartIdentifier.cs
- NamespaceList.cs
- TreeIterator.cs
- UniqueConstraint.cs
- TransportChannelListener.cs
- ListViewDeleteEventArgs.cs
- ItemsPresenter.cs
- ToolStripControlHost.cs