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
- ActivityExecutionFilter.cs
- HttpHeaderCollection.cs
- WebPageTraceListener.cs
- RuntimeHelpers.cs
- PropagatorResult.cs
- RadialGradientBrush.cs
- EntityProxyFactory.cs
- EnumValAlphaComparer.cs
- safelinkcollection.cs
- ActivityTypeCodeDomSerializer.cs
- RectangleGeometry.cs
- DynamicQueryStringParameter.cs
- EntityKeyElement.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- PageAdapter.cs
- Attributes.cs
- MinMaxParagraphWidth.cs
- PointValueSerializer.cs
- LinqDataSourceContextEventArgs.cs
- AdCreatedEventArgs.cs
- Separator.cs
- RegexWorker.cs
- CodeAttachEventStatement.cs
- GridViewColumnHeader.cs
- XmlName.cs
- ScrollViewerAutomationPeer.cs
- HtmlShimManager.cs
- versioninfo.cs
- EventHandlingScope.cs
- GlyphRun.cs
- SynchronizedDispatch.cs
- HighlightVisual.cs
- QueryBranchOp.cs
- StreamWithDictionary.cs
- keycontainerpermission.cs
- DbParameterHelper.cs
- StorageBasedPackageProperties.cs
- MetadataCacheItem.cs
- DecimalAnimationBase.cs
- MappingMetadataHelper.cs
- Compress.cs
- GenericWebPart.cs
- SearchForVirtualItemEventArgs.cs
- InfoCardAsymmetricCrypto.cs
- DecodeHelper.cs
- ContextDataSource.cs
- StackSpiller.Bindings.cs
- DisplayNameAttribute.cs
- RecognizedAudio.cs
- ArglessEventHandlerProxy.cs
- SegmentTree.cs
- ItemTypeToolStripMenuItem.cs
- BaseProcessor.cs
- RepeatInfo.cs
- PrincipalPermission.cs
- NotifyParentPropertyAttribute.cs
- SignatureDescription.cs
- CultureInfoConverter.cs
- StringArrayConverter.cs
- SQLString.cs
- TextElementEditingBehaviorAttribute.cs
- DataKey.cs
- ScriptRef.cs
- HtmlWindow.cs
- SmtpNtlmAuthenticationModule.cs
- ConfigPathUtility.cs
- SafeHandles.cs
- StringOutput.cs
- ReliableChannelListener.cs
- MenuItemStyleCollection.cs
- PresentationTraceSources.cs
- ProviderSettingsCollection.cs
- NetSectionGroup.cs
- ConfigXmlAttribute.cs
- InternalConfigHost.cs
- ScopeCollection.cs
- Statements.cs
- ToolStripMenuItem.cs
- SamlNameIdentifierClaimResource.cs
- CriticalExceptions.cs
- CharacterMetricsDictionary.cs
- ToolStripOverflow.cs
- TreeChangeInfo.cs
- _SecureChannel.cs
- XmlCountingReader.cs
- DataPagerFieldCommandEventArgs.cs
- LinqDataSourceContextData.cs
- TextProperties.cs
- XmlWriterTraceListener.cs
- FactoryGenerator.cs
- CompilationSection.cs
- Button.cs
- LayoutUtils.cs
- SerializationInfo.cs
- DataReaderContainer.cs
- IERequestCache.cs
- TraceSection.cs
- DataGridViewIntLinkedList.cs
- MenuItemBinding.cs
- TemplateBindingExpressionConverter.cs