Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / HtmlElementErrorEventArgs.cs / 1305376 / 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.Url where error occurred ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EdmValidator.cs
- SchemaCollectionCompiler.cs
- WindowsGrip.cs
- WebEvents.cs
- SqlReorderer.cs
- UriTemplateLiteralQueryValue.cs
- ExpandableObjectConverter.cs
- IntegerFacetDescriptionElement.cs
- RewritingPass.cs
- PersistenceMetadataNamespace.cs
- AdornedElementPlaceholder.cs
- BinaryObjectReader.cs
- TreeIterator.cs
- AdPostCacheSubstitution.cs
- ExpressionTextBoxAutomationPeer.cs
- File.cs
- XsltConvert.cs
- RenderContext.cs
- CodeSnippetCompileUnit.cs
- ServiceControllerDesigner.cs
- StorageTypeMapping.cs
- GroupBoxDesigner.cs
- DocobjHost.cs
- DoubleLink.cs
- FaultImportOptions.cs
- CalendarTable.cs
- ValueProviderWrapper.cs
- Vector3DAnimationUsingKeyFrames.cs
- _PooledStream.cs
- EventNotify.cs
- CopyNamespacesAction.cs
- WebScriptMetadataFormatter.cs
- Label.cs
- ListViewDataItem.cs
- SHA256Managed.cs
- PageSetupDialog.cs
- MonthCalendar.cs
- Evidence.cs
- GridViewDeleteEventArgs.cs
- Attributes.cs
- TransformProviderWrapper.cs
- RightsManagementEncryptedStream.cs
- FullTrustAssembly.cs
- XmlSchemaSequence.cs
- PrintPreviewGraphics.cs
- Preprocessor.cs
- Repeater.cs
- XmlResolver.cs
- Compiler.cs
- ZipIOExtraField.cs
- SourceSwitch.cs
- XPathNodeInfoAtom.cs
- StylusDownEventArgs.cs
- VisualStyleInformation.cs
- DetailsViewRowCollection.cs
- BindingsCollection.cs
- ResourceReader.cs
- BuildManager.cs
- _ChunkParse.cs
- TouchDevice.cs
- TouchDevice.cs
- SecureUICommand.cs
- SubtreeProcessor.cs
- Grant.cs
- FieldAccessException.cs
- ResourceContainerWrapper.cs
- SystemSounds.cs
- SchemaImporterExtensionElementCollection.cs
- DocumentPropertiesDialog.cs
- SafeViewOfFileHandle.cs
- ToolStripSettings.cs
- ErrorWebPart.cs
- Camera.cs
- PersonalizationEntry.cs
- XmlNamespaceDeclarationsAttribute.cs
- WindowsListViewGroupSubsetLink.cs
- PeerNearMe.cs
- KeyNotFoundException.cs
- HtmlFormAdapter.cs
- ToolStripCollectionEditor.cs
- MethodCallTranslator.cs
- BindUriHelper.cs
- TextRangeEdit.cs
- XmlAggregates.cs
- FixedSOMFixedBlock.cs
- IntSecurity.cs
- TreeView.cs
- FileIOPermission.cs
- StatusBarPanelClickEvent.cs
- MSG.cs
- StateRuntime.cs
- DataBindingCollection.cs
- SecurityElement.cs
- TypefaceMetricsCache.cs
- CngAlgorithm.cs
- DecoratedNameAttribute.cs
- Tool.cs
- FreezableOperations.cs
- AudioFormatConverter.cs
- PrePostDescendentsWalker.cs