Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Navigation / NavigationFailedEventArgs.cs / 1 / 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: huwang 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: huwang 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
- SmtpTransport.cs
- LinkUtilities.cs
- ColorEditor.cs
- TemplatedEditableDesignerRegion.cs
- CardSpaceException.cs
- DESCryptoServiceProvider.cs
- MultiAsyncResult.cs
- Component.cs
- PagesSection.cs
- WebServiceParameterData.cs
- DiscoveryInnerClientAdhocCD1.cs
- FileDataSourceCache.cs
- _BufferOffsetSize.cs
- EqualityComparer.cs
- WindowsBrush.cs
- BoundPropertyEntry.cs
- QueryReaderSettings.cs
- Calendar.cs
- ToolStrip.cs
- SoundPlayer.cs
- ScrollViewer.cs
- MemberPath.cs
- RSACryptoServiceProvider.cs
- IInstanceContextProvider.cs
- WebPartConnectionsDisconnectVerb.cs
- HelpProvider.cs
- BindingGroup.cs
- FacetValueContainer.cs
- AsynchronousChannelMergeEnumerator.cs
- GeneralTransformGroup.cs
- Token.cs
- hresults.cs
- COM2ComponentEditor.cs
- QueryUtil.cs
- Canonicalizers.cs
- PnrpPermission.cs
- Globals.cs
- CallbackValidatorAttribute.cs
- ApplicationContext.cs
- AuthenticationConfig.cs
- TabControlCancelEvent.cs
- XmlExtensionFunction.cs
- InputMethodStateChangeEventArgs.cs
- HttpRawResponse.cs
- AdornerPresentationContext.cs
- TrackingWorkflowEventArgs.cs
- columnmapkeybuilder.cs
- AffineTransform3D.cs
- TransformValueSerializer.cs
- DataServiceClientException.cs
- IssuedTokenClientCredential.cs
- EntityDesignerDataSourceView.cs
- IntegrationExceptionEventArgs.cs
- TripleDES.cs
- basevalidator.cs
- SmiEventStream.cs
- MatrixTransform.cs
- HebrewNumber.cs
- UInt64Converter.cs
- ImageAttributes.cs
- EqualityComparer.cs
- XmlSchemaSimpleTypeUnion.cs
- MenuEventArgs.cs
- RegexCapture.cs
- SqlDataSource.cs
- PropertyChangedEventManager.cs
- Validator.cs
- ConstructorExpr.cs
- PlaceHolder.cs
- WebPartConnectionsConfigureVerb.cs
- VariantWrapper.cs
- ExpressionConverter.cs
- JoinCqlBlock.cs
- BufferedWebEventProvider.cs
- Rect3D.cs
- Message.cs
- XmlSchemas.cs
- TextDecorationUnitValidation.cs
- PolyQuadraticBezierSegment.cs
- HtmlListAdapter.cs
- CalloutQueueItem.cs
- WpfGeneratedKnownTypes.cs
- DocumentViewerBase.cs
- XsltSettings.cs
- ProjectedSlot.cs
- FileDialog.cs
- BulletedListEventArgs.cs
- SimpleWebHandlerParser.cs
- SqlParameterCollection.cs
- DPTypeDescriptorContext.cs
- OperationAbortedException.cs
- ControlParameter.cs
- MetadataHelper.cs
- XmlSchemaImport.cs
- DataMemberAttribute.cs
- LoginUtil.cs
- X509CertificateCollection.cs
- XhtmlBasicLiteralTextAdapter.cs
- Select.cs
- PersistenceProviderBehavior.cs