WebBrowserNavigatedEventHandler.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / WebBrowserNavigatedEventHandler.cs / 1 / WebBrowserNavigatedEventHandler.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

 
using System.Net; 

namespace System.Windows.Forms { 

    /// 
    /// 
    ///      
    /// Delegate to the WebBrowser Navigated event.
    ///      
    ///  
    public delegate void WebBrowserNavigatedEventHandler(object sender, WebBrowserNavigatedEventArgs e);
 
    /// 
    /// 
    ///    
    /// Provides data for the  event. 
    ///    
    ///  
    public class WebBrowserNavigatedEventArgs : EventArgs { 
        private Uri url;
 
        /// 
        /// 
        ///    
        /// Creates an instance of the  class. 
        ///    
        ///  
        public WebBrowserNavigatedEventArgs(Uri url) { 
            this.url = url;
        } 

        /// 
        /// 
        ///     
        /// Url the browser navigated to.
        ///     
        ///  
        public Uri Url {
            get { 
                WebBrowser.EnsureUrlConnectPermission(url);
                return this.url;
            }
        } 
    }
 
} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK