Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Navigation / NavigationFailedEventArgs.cs / 1305600 / NavigationFailedEventArgs.cs
//-------------------------------------------------------------------------------------------------- // File: NavigationFailedCancelEventArgs.cs // // Copyright (C) 2004 by Microsoft Corporation. All rights reserved. // // Description: // This event is fired when an error is encountered during a navigation. // The NavigationFailedEventArgs contains the error status code and // the exception that was thrown. By default Handled property is set to false, // which allows the exception to be rethrown. // The event handler can prevent exception from throwing // to the user by setting the Handled property to true // // This event is fired on navigation container and refired on the NavigationApplication // // History: // 06/10/06: [....] Created // //------------------------------------------------------------------------------------------------- using System.ComponentModel; using System.Net; namespace System.Windows.Navigation { ////// Event args for NavigationFailed event /// The NavigationFailedEventArgs contains the exception that was thrown. /// By default Handled property is set to false. /// The event handler can prevent the exception from being throwing to the user by setting /// the Handled property to true /// public class NavigationFailedEventArgs : EventArgs { // Internal constructor internal NavigationFailedEventArgs(Uri uri, Object extraData, Object navigator, WebRequest request, WebResponse response, Exception e) { _uri = uri; _extraData = extraData; _navigator = navigator; _request = request; _response = response; _exception = e; } ////// URI of the markup page to navigate to. /// public Uri Uri { get { return _uri; } } ////// Exposes extra data object which was optionally passed as a parameter to Navigate. /// public Object ExtraData { get { return _extraData; } } ////// The navigator that raised this event /// public object Navigator { get { return _navigator; } } ////// Exposes the WebRequest used to retrieve content. /// public WebRequest WebRequest { get { return _request; } } ////// Exposes the WebResponse used to retrieve content. /// public WebResponse WebResponse { get { return _response; } } ////// Exception that was thrown during the navigation /// public Exception Exception { get { return _exception; } } ////// Returns a boolean flag indicating if or not this event has been handled. /// public bool Handled { get { return _handled; } set { _handled = value; } } Uri _uri; Object _extraData; Object _navigator; WebRequest _request; WebResponse _response; Exception _exception; bool _handled = false; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //-------------------------------------------------------------------------------------------------- // File: NavigationFailedCancelEventArgs.cs // // Copyright (C) 2004 by Microsoft Corporation. All rights reserved. // // Description: // This event is fired when an error is encountered during a navigation. // The NavigationFailedEventArgs contains the error status code and // the exception that was thrown. By default Handled property is set to false, // which allows the exception to be rethrown. // The event handler can prevent exception from throwing // to the user by setting the Handled property to true // // This event is fired on navigation container and refired on the NavigationApplication // // History: // 06/10/06: [....] Created // //------------------------------------------------------------------------------------------------- using System.ComponentModel; using System.Net; namespace System.Windows.Navigation { ////// Event args for NavigationFailed event /// The NavigationFailedEventArgs contains the exception that was thrown. /// By default Handled property is set to false. /// The event handler can prevent the exception from being throwing to the user by setting /// the Handled property to true /// public class NavigationFailedEventArgs : EventArgs { // Internal constructor internal NavigationFailedEventArgs(Uri uri, Object extraData, Object navigator, WebRequest request, WebResponse response, Exception e) { _uri = uri; _extraData = extraData; _navigator = navigator; _request = request; _response = response; _exception = e; } ////// URI of the markup page to navigate to. /// public Uri Uri { get { return _uri; } } ////// Exposes extra data object which was optionally passed as a parameter to Navigate. /// public Object ExtraData { get { return _extraData; } } ////// The navigator that raised this event /// public object Navigator { get { return _navigator; } } ////// Exposes the WebRequest used to retrieve content. /// public WebRequest WebRequest { get { return _request; } } ////// Exposes the WebResponse used to retrieve content. /// public WebResponse WebResponse { get { return _response; } } ////// Exception that was thrown during the navigation /// public Exception Exception { get { return _exception; } } ////// Returns a boolean flag indicating if or not this event has been handled. /// public bool Handled { get { return _handled; } set { _handled = value; } } Uri _uri; Object _extraData; Object _navigator; WebRequest _request; WebResponse _response; Exception _exception; bool _handled = false; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextEditorTables.cs
- DataGridViewSelectedRowCollection.cs
- PageTheme.cs
- ConnectionPointCookie.cs
- Parsers.cs
- InputLanguageProfileNotifySink.cs
- StubHelpers.cs
- TextDocumentView.cs
- CodeValidator.cs
- ProgressiveCrcCalculatingStream.cs
- InstanceData.cs
- DbDataAdapter.cs
- XamlStyleSerializer.cs
- AuthenticateEventArgs.cs
- PackageDigitalSignature.cs
- JapaneseCalendar.cs
- TypeHelpers.cs
- SqlBooleanMismatchVisitor.cs
- ConstraintStruct.cs
- XPathDocumentNavigator.cs
- CatalogPartChrome.cs
- MaskedTextBoxDesignerActionList.cs
- ApplicationHost.cs
- SafeFileMappingHandle.cs
- DataGridViewRowsAddedEventArgs.cs
- TemplateApplicationHelper.cs
- CheckableControlBaseAdapter.cs
- CompensatableSequenceActivity.cs
- ICspAsymmetricAlgorithm.cs
- SimpleLine.cs
- HttpDictionary.cs
- ComponentResourceKeyConverter.cs
- OdbcConnectionHandle.cs
- GridViewSortEventArgs.cs
- Activator.cs
- AnonymousIdentificationModule.cs
- SqlMethods.cs
- CoTaskMemHandle.cs
- TCEAdapterGenerator.cs
- ModuleBuilderData.cs
- ListViewDataItem.cs
- InsufficientMemoryException.cs
- ProxySimple.cs
- XmlSchemaProviderAttribute.cs
- Psha1DerivedKeyGeneratorHelper.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- StorageInfo.cs
- FileDialogPermission.cs
- EntityCommand.cs
- ProviderSettings.cs
- __TransparentProxy.cs
- ListView.cs
- ECDiffieHellmanPublicKey.cs
- MarkerProperties.cs
- BitmapEffect.cs
- NullableConverter.cs
- XmlIlVisitor.cs
- HostedImpersonationContext.cs
- TypeBuilderInstantiation.cs
- MobilePage.cs
- SamlSecurityToken.cs
- AlternateViewCollection.cs
- TrackingMemoryStream.cs
- ColorContext.cs
- ObjectStateEntryDbDataRecord.cs
- ExtensionDataReader.cs
- WebZone.cs
- XmlTypeAttribute.cs
- DynamicResourceExtension.cs
- ForwardPositionQuery.cs
- DataBindingCollectionEditor.cs
- SerializeAbsoluteContext.cs
- HandlerFactoryCache.cs
- Parser.cs
- TemplateBamlTreeBuilder.cs
- WinFormsSecurity.cs
- OracleParameterBinding.cs
- PolicyUnit.cs
- FlowDocumentScrollViewer.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- MessageQueue.cs
- StructuralCache.cs
- SQLBytesStorage.cs
- FileInfo.cs
- ListControl.cs
- Separator.cs
- SqlRemoveConstantOrderBy.cs
- DecimalAnimationBase.cs
- StrokeFIndices.cs
- ContextConfiguration.cs
- Baml6Assembly.cs
- FileDialogCustomPlace.cs
- SynchronizedInputAdaptor.cs
- NestedContainer.cs
- X509Certificate2Collection.cs
- ListBoxItemAutomationPeer.cs
- TransportContext.cs
- DirtyTextRange.cs
- ArrayConverter.cs
- SpecialFolderEnumConverter.cs