Code:
/ DotNET / DotNET / 8.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
- LogLogRecordEnumerator.cs
- CharKeyFrameCollection.cs
- NotFiniteNumberException.cs
- MaskedTextBoxDesignerActionList.cs
- NullableDecimalSumAggregationOperator.cs
- DiagnosticsConfigurationHandler.cs
- TabletDevice.cs
- KnownColorTable.cs
- LicenseException.cs
- SectionInformation.cs
- XPathSelfQuery.cs
- InvalidCommandTreeException.cs
- TimelineGroup.cs
- FlowPanelDesigner.cs
- LinkedResource.cs
- AesManaged.cs
- LongPath.cs
- _AutoWebProxyScriptEngine.cs
- EastAsianLunisolarCalendar.cs
- DoWorkEventArgs.cs
- TargetFrameworkUtil.cs
- XamlParser.cs
- XsdSchemaFileEditor.cs
- WebColorConverter.cs
- DefaultCompensation.cs
- Camera.cs
- BrowserCapabilitiesFactory35.cs
- XamlTemplateSerializer.cs
- GradientBrush.cs
- WindowsSpinner.cs
- CodeTypeDeclaration.cs
- CompoundFileIOPermission.cs
- UpdateRecord.cs
- AuthenticationException.cs
- PropertyIdentifier.cs
- MappingSource.cs
- XmlSerializationGeneratedCode.cs
- Cursors.cs
- QilTernary.cs
- CultureInfo.cs
- ValidatorCompatibilityHelper.cs
- ListView.cs
- ClientRoleProvider.cs
- ProviderCollection.cs
- ListItemCollection.cs
- DateTimeOffset.cs
- ConfigurationSectionCollection.cs
- ZipIOBlockManager.cs
- TranslateTransform3D.cs
- XmlDeclaration.cs
- ValueOfAction.cs
- SQLInt64Storage.cs
- FileNotFoundException.cs
- PropertyValueUIItem.cs
- StagingAreaInputItem.cs
- DataConnectionHelper.cs
- MenuItemCollection.cs
- CellLabel.cs
- StateElement.cs
- WizardPanelChangingEventArgs.cs
- BaseServiceProvider.cs
- NegotiateStream.cs
- RegexNode.cs
- ConnectionProviderAttribute.cs
- Assembly.cs
- AdRotator.cs
- ContentValidator.cs
- Style.cs
- ColorTranslator.cs
- DataGridBoolColumn.cs
- ColorConvertedBitmap.cs
- StringValidatorAttribute.cs
- SystemFonts.cs
- HttpRequestWrapper.cs
- NavigationService.cs
- ResolveNextArgumentWorkItem.cs
- UnsafeNativeMethods.cs
- EventEntry.cs
- FolderLevelBuildProviderCollection.cs
- CompositeDataBoundControl.cs
- FontStretches.cs
- InvokeProviderWrapper.cs
- DeobfuscatingStream.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- VariableExpressionConverter.cs
- httpstaticobjectscollection.cs
- assertwrapper.cs
- RefExpr.cs
- DoWorkEventArgs.cs
- DataBindingList.cs
- CalendarAutoFormatDialog.cs
- PropertyEmitter.cs
- xmlsaver.cs
- BooleanSwitch.cs
- FormCollection.cs
- PathSegmentCollection.cs
- Geometry.cs
- BindingCollectionElement.cs
- FrameworkContentElement.cs
- FixedSOMLineCollection.cs