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
- CqlLexer.cs
- MsmqBindingMonitor.cs
- Int32Converter.cs
- AxImporter.cs
- CatalogZone.cs
- TreeNodeSelectionProcessor.cs
- RuntimeIdentifierPropertyAttribute.cs
- GridViewRowEventArgs.cs
- KnownTypesHelper.cs
- Material.cs
- SqlBulkCopyColumnMapping.cs
- SqlDataSourceCache.cs
- HtmlDocument.cs
- DataBindingHandlerAttribute.cs
- PropertyKey.cs
- HostingPreferredMapPath.cs
- FormClosingEvent.cs
- ScriptingSectionGroup.cs
- MultiPropertyDescriptorGridEntry.cs
- ConditionalExpression.cs
- HtmlListAdapter.cs
- HttpDebugHandler.cs
- SessionState.cs
- CodeNamespaceCollection.cs
- ColorAnimationUsingKeyFrames.cs
- DBParameter.cs
- Int64Converter.cs
- ScriptManager.cs
- PropertyTabAttribute.cs
- DesignerActionItem.cs
- ImageFormat.cs
- SharedUtils.cs
- SoapObjectReader.cs
- OdbcException.cs
- ItemsPanelTemplate.cs
- FixedLineResult.cs
- QilXmlReader.cs
- ThicknessKeyFrameCollection.cs
- OdbcParameter.cs
- WebHttpEndpoint.cs
- util.cs
- BoundColumn.cs
- CssClassPropertyAttribute.cs
- ExceptionHelpers.cs
- HttpListenerPrefixCollection.cs
- XPathNodeHelper.cs
- Menu.cs
- WebPartEditorApplyVerb.cs
- Queue.cs
- ManualResetEvent.cs
- HierarchicalDataBoundControl.cs
- CompositeCollection.cs
- ServiceModelSecurityTokenRequirement.cs
- WindowsGraphicsWrapper.cs
- httpapplicationstate.cs
- Int16Animation.cs
- EventItfInfo.cs
- CaseStatementSlot.cs
- ThreadStartException.cs
- CustomSignedXml.cs
- VisualCollection.cs
- WebPartMinimizeVerb.cs
- ToolTipAutomationPeer.cs
- CompositeScriptReference.cs
- UnsafeNativeMethods.cs
- BehaviorEditorPart.cs
- VirtualPath.cs
- MouseActionValueSerializer.cs
- XslException.cs
- AssemblyCollection.cs
- InfoCardSymmetricCrypto.cs
- EmptyReadOnlyDictionaryInternal.cs
- ApplicationSettingsBase.cs
- DefaultEventAttribute.cs
- SetterBase.cs
- DesignOnlyAttribute.cs
- ProviderConnectionPoint.cs
- SharedStatics.cs
- OracleColumn.cs
- WebPartCollection.cs
- SecureEnvironment.cs
- SqlConnectionHelper.cs
- Rijndael.cs
- MethodBody.cs
- Rect3DValueSerializer.cs
- RijndaelManagedTransform.cs
- ColorConverter.cs
- BaseTemplateCodeDomTreeGenerator.cs
- NativeStructs.cs
- ScriptServiceAttribute.cs
- TheQuery.cs
- RoutedUICommand.cs
- XmlChildEnumerator.cs
- StackOverflowException.cs
- ItemCheckEvent.cs
- WindowsSecurityTokenAuthenticator.cs
- LoginNameDesigner.cs
- CryptoConfig.cs
- ObjectQuery.cs
- ProviderSettings.cs