Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / WebBrowserNavigatingEventHandler.cs / 1305376 / WebBrowserNavigatingEventHandler.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Net; using System.ComponentModel; namespace System.Windows.Forms { ////// /// public delegate void WebBrowserNavigatingEventHandler(object sender, WebBrowserNavigatingEventArgs e); ////// Delegate to the WebBrowser Navigating event. /// ////// /// public class WebBrowserNavigatingEventArgs : CancelEventArgs { private Uri url; private string targetFrameName; ////// Provides data for the ///event. /// /// /// public WebBrowserNavigatingEventArgs(Uri url, string targetFrameName) { this.url = url; this.targetFrameName = targetFrameName; } ////// Creates an instance of the ///class. /// /// /// public Uri Url { get { WebBrowser.EnsureUrlConnectPermission(url); return this.url; } } ////// Url the browser is navigating to. /// ////// /// public string TargetFrameName { get { WebBrowser.EnsureUrlConnectPermission(url); return this.targetFrameName; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// In case an individual frame is about to be navigated, this contains the frame name. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ChangeToolStripParentVerb.cs
- CompoundFileReference.cs
- HtmlInputImage.cs
- PatternMatcher.cs
- LogicalMethodInfo.cs
- StrongName.cs
- CombinedTcpChannel.cs
- SchemaNamespaceManager.cs
- SmiEventSink.cs
- FileIOPermission.cs
- SupportsEventValidationAttribute.cs
- _SSPIWrapper.cs
- FormViewUpdatedEventArgs.cs
- CustomExpressionEventArgs.cs
- AspNetPartialTrustHelpers.cs
- ExpressionBindingCollection.cs
- WorkflowFileItem.cs
- HttpHeaderCollection.cs
- RoutedPropertyChangedEventArgs.cs
- WindowCollection.cs
- LocationUpdates.cs
- CaretElement.cs
- DynamicPropertyReader.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- DrawingBrush.cs
- SingleObjectCollection.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- FilterException.cs
- DesignerResources.cs
- RepeaterItemCollection.cs
- XMLSchema.cs
- RequestCache.cs
- MetadataCacheItem.cs
- BoundConstants.cs
- Normalization.cs
- AppliesToBehaviorDecisionTable.cs
- IdentifierService.cs
- IISUnsafeMethods.cs
- ResolveCriteria11.cs
- EntitySet.cs
- DataServices.cs
- StoreItemCollection.Loader.cs
- processwaithandle.cs
- StatusBarPanelClickEvent.cs
- XmlHelper.cs
- DoubleKeyFrameCollection.cs
- WindowsFormsSynchronizationContext.cs
- GridItemProviderWrapper.cs
- TypedReference.cs
- UndoUnit.cs
- FlowchartDesignerCommands.cs
- MessagePropertyFilter.cs
- SecurityHeaderTokenResolver.cs
- TypeCacheManager.cs
- CursorConverter.cs
- HtmlInputReset.cs
- x509utils.cs
- ProtocolsSection.cs
- querybuilder.cs
- AlternateView.cs
- EntityContainerEntitySet.cs
- EraserBehavior.cs
- TemplateKey.cs
- ParamArrayAttribute.cs
- AppSettingsExpressionBuilder.cs
- TraceSection.cs
- SessionStateContainer.cs
- GridView.cs
- WindowsFormsHelpers.cs
- SecurityTokenProvider.cs
- MatrixConverter.cs
- PDBReader.cs
- CodeNamespaceCollection.cs
- ObjectStateManager.cs
- InitializationEventAttribute.cs
- CustomErrorCollection.cs
- ConstraintConverter.cs
- RowCache.cs
- ToolStripLocationCancelEventArgs.cs
- ToolstripProfessionalRenderer.cs
- ChangeConflicts.cs
- DesignSurface.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- MsmqChannelFactory.cs
- XPathNavigatorKeyComparer.cs
- _ListenerResponseStream.cs
- KeyNotFoundException.cs
- System.Data_BID.cs
- XmlReflectionMember.cs
- MetadataExporter.cs
- DetailsViewDeleteEventArgs.cs
- SqlCharStream.cs
- UnitySerializationHolder.cs
- DialogResultConverter.cs
- FloaterBaseParagraph.cs
- FormViewDeleteEventArgs.cs
- HttpConfigurationContext.cs
- InvariantComparer.cs
- OrderedDictionary.cs
- WebPartUserCapability.cs