Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / WebBrowserNavigatingEventHandler.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- XmlDataSource.cs
- Overlapped.cs
- StreamMarshaler.cs
- ProviderIncompatibleException.cs
- DesignTimeTemplateParser.cs
- HwndSource.cs
- BinaryParser.cs
- Header.cs
- Metafile.cs
- DependencySource.cs
- Int64Animation.cs
- NodeFunctions.cs
- WindowsRichEdit.cs
- ThreadPool.cs
- ACE.cs
- DataGridItemCollection.cs
- Point3DConverter.cs
- Membership.cs
- DispatcherHooks.cs
- FullTextLine.cs
- DelegateSerializationHolder.cs
- Thumb.cs
- SoapEnumAttribute.cs
- VideoDrawing.cs
- WindowsStartMenu.cs
- DocumentXPathNavigator.cs
- HighlightComponent.cs
- RepeaterItemCollection.cs
- MultiByteCodec.cs
- Geometry3D.cs
- AuthenticationModulesSection.cs
- SettingsPropertyWrongTypeException.cs
- DataViewSettingCollection.cs
- RawStylusActions.cs
- GenerateHelper.cs
- SiteMapNodeCollection.cs
- RelatedView.cs
- FlowDocumentFormatter.cs
- EntitySqlQueryCacheKey.cs
- OdbcFactory.cs
- ListViewCancelEventArgs.cs
- CultureSpecificStringDictionary.cs
- ImplicitInputBrush.cs
- SelectedGridItemChangedEvent.cs
- ImportContext.cs
- WriteStateInfoBase.cs
- EndpointAddressMessageFilter.cs
- CallInfo.cs
- InternalCache.cs
- IdentifierElement.cs
- XmlEnumAttribute.cs
- Int16Animation.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- TrackPoint.cs
- SoapFormatter.cs
- DayRenderEvent.cs
- EntityDesignerDataSourceView.cs
- QueryableDataSourceView.cs
- CategoryGridEntry.cs
- ChannelFactoryRefCache.cs
- UnsafeNativeMethodsPenimc.cs
- BinaryObjectInfo.cs
- GZipStream.cs
- Completion.cs
- WindowsTooltip.cs
- SetIterators.cs
- StringUtil.cs
- BidPrivateBase.cs
- Int32Storage.cs
- ProgressChangedEventArgs.cs
- CatalogPartChrome.cs
- mactripleDES.cs
- DataViewSettingCollection.cs
- Rectangle.cs
- MaskedTextProvider.cs
- WindowsToolbarAsMenu.cs
- TcpTransportBindingElement.cs
- XmlProcessingInstruction.cs
- NavigationService.cs
- SemanticAnalyzer.cs
- URLEditor.cs
- MappingSource.cs
- ResourceDefaultValueAttribute.cs
- TableLayout.cs
- Attributes.cs
- DataGridViewCellStateChangedEventArgs.cs
- FieldAccessException.cs
- ByteAnimationBase.cs
- StrokeRenderer.cs
- RawStylusInputCustomData.cs
- DataServiceConfiguration.cs
- ListViewTableRow.cs
- ResourceContainer.cs
- IMembershipProvider.cs
- TextBoxAutomationPeer.cs
- LongValidatorAttribute.cs
- AssociationSetEnd.cs
- WebServiceMethodData.cs
- BookmarkUndoUnit.cs
- EvidenceBase.cs