WebBrowserDocumentCompletedEventHandler.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 / WebBrowserDocumentCompletedEventHandler.cs / 1 / WebBrowserDocumentCompletedEventHandler.cs

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

using System.Net; 
 
namespace System.Windows.Forms {
 
    /// 
    /// 
    ///     
    /// Delegate to the WebBrowser DocumentCompleted event. 
    ///     
    ///  
    public delegate void WebBrowserDocumentCompletedEventHandler(object sender, WebBrowserDocumentCompletedEventArgs e); 

    ///  
    /// 
    ///    
    /// Provides data for the  event.
    ///     
    /// 
    public class WebBrowserDocumentCompletedEventArgs : EventArgs { 
        private Uri url; 

        ///  
        /// 
        ///    
        /// Creates an instance of the  class.
        ///     
        /// 
        public WebBrowserDocumentCompletedEventArgs(Uri url) { 
            this.url = url; 
        }
 
        /// 
        /// 
        ///    
        /// Url of the Document. 
        ///    
        ///  
        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