Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / HtmlElementErrorEventArgs.cs / 1 / HtmlElementErrorEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.ComponentModel; namespace System.Windows.Forms { ////// /// public sealed class HtmlElementErrorEventArgs : EventArgs { private string description; private string urlString; private Uri url; private int lineNumber; private bool handled; internal HtmlElementErrorEventArgs(string description, string urlString, int lineNumber) { this.description = description; this.urlString = urlString; this.lineNumber = lineNumber; } ///EventArgs for onerror event of HtmlElement ////// /// public string Description { get { return description; } } ///Description of error ////// /// public bool Handled { get { return handled; } set { handled = value; } } ////// Gets or sets a value indicating whether the ////// event was handled. /// /// /// public int LineNumber { get { return lineNumber; } } ///Line number where error occurred ////// /// public Uri Url { get { if (url == null) { url = new Uri(urlString); } return url; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Url where error occurred ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TableLayoutPanelDesigner.cs
- Polyline.cs
- Int32EqualityComparer.cs
- SynchronizationLockException.cs
- BitmapEffectGeneralTransform.cs
- CachedBitmap.cs
- EncoderFallback.cs
- SrgsDocument.cs
- CssClassPropertyAttribute.cs
- UDPClient.cs
- HtmlElementEventArgs.cs
- dsa.cs
- IsolatedStorageFile.cs
- ConfigXmlAttribute.cs
- LockedHandleGlyph.cs
- ValidationEventArgs.cs
- SessionStateUtil.cs
- PeerCollaboration.cs
- HashMembershipCondition.cs
- AnonymousIdentificationSection.cs
- EntityKey.cs
- PbrsForward.cs
- UserInitiatedRoutedEventPermission.cs
- RuleSettingsCollection.cs
- XmlLoader.cs
- SchemaElementLookUpTableEnumerator.cs
- XPathConvert.cs
- TypeConverters.cs
- WizardForm.cs
- ResourceContainer.cs
- WebPartsPersonalizationAuthorization.cs
- DesignerProperties.cs
- DataBindingCollectionEditor.cs
- ToolStripProgressBar.cs
- FixedTextPointer.cs
- InputQueue.cs
- ModelTreeEnumerator.cs
- DWriteFactory.cs
- FrameworkElementFactoryMarkupObject.cs
- ApplicationServiceHelper.cs
- ArgIterator.cs
- TextSelectionHelper.cs
- StyleCollection.cs
- EventProvider.cs
- DbProviderConfigurationHandler.cs
- ProfileParameter.cs
- Attachment.cs
- DataKeyCollection.cs
- DataPagerFieldCollection.cs
- SocketElement.cs
- SkipStoryboardToFill.cs
- SmtpNetworkElement.cs
- SettingsProperty.cs
- FillBehavior.cs
- HMACSHA512.cs
- CellTreeNode.cs
- MenuEventArgs.cs
- LineUtil.cs
- SpeakInfo.cs
- AssemblyGen.cs
- NumericExpr.cs
- TextProviderWrapper.cs
- ConstrainedDataObject.cs
- TextDecorationLocationValidation.cs
- LoadMessageLogger.cs
- SqlDeflator.cs
- WpfWebRequestHelper.cs
- TemplateNameScope.cs
- InstanceKeyCompleteException.cs
- DbConnectionStringBuilder.cs
- TypeForwardedToAttribute.cs
- CompositeTypefaceMetrics.cs
- TextTreeUndoUnit.cs
- WindowPatternIdentifiers.cs
- ClientApiGenerator.cs
- UpdatePanelTriggerCollection.cs
- EventData.cs
- ManifestSignatureInformation.cs
- DbProviderFactoriesConfigurationHandler.cs
- DataServiceKeyAttribute.cs
- RSAPKCS1SignatureFormatter.cs
- ActiveXMessageFormatter.cs
- Vector3DCollection.cs
- COAUTHIDENTITY.cs
- WebBrowserSiteBase.cs
- MatrixTransform3D.cs
- RefreshEventArgs.cs
- AsymmetricAlgorithm.cs
- ResourceType.cs
- SqlServices.cs
- HighlightVisual.cs
- WindowProviderWrapper.cs
- GeometryModel3D.cs
- SoapProtocolReflector.cs
- NTAccount.cs
- IteratorAsyncResult.cs
- ObjectAnimationBase.cs
- CompilerTypeWithParams.cs
- SelectionProviderWrapper.cs
- SHA384Managed.cs