Click here to Skip to main content
15,896,606 members
Articles / Programming Languages / C#

WebBrowserControl for the .NET Framework 1.1

Rate me:
Please Sign up or sign in to vote.
3.06/5 (11 votes)
15 Apr 2010CPOL2 min read 98.8K   1.6K   21  
An implementation of a web browser control for the .NET Framework 1.1.
using System;

namespace Pajocomo.Windows.Forms
{
	/// <summary>
	/// The possible errors returned by the <see cref="WebBrowserPhishingFilterStatusChangedEventArgs.Status"/> property
	/// of the <see cref="WebBrowserControl.PhishingFilterStatusChanged"/> event.
	/// </summary>
	/// <seealso href="http://msdn2.microsoft.com/library/Aa768298.aspx">Phishing Filter Status Codes.</seealso>
	public enum WebBrowserPhishingFilterStatus : int
	{
		/// <summary>
		/// Phishing Filter has not been called yet.
		/// </summary>
		None = 0x0,
	
		/// <summary>
		/// Phishing Filter is analyzing the current page.
		/// </summary>
		Analyzing = 0x1,
	
		/// <summary>
		/// Phishing Filter has finished analysis of this page, and it is safe.
		/// </summary>
		Analyzed = 0x2,
	
		/// <summary>
		/// Phishing Filter has analyzed this page and it is safe. However, the page cannot be verified against the online database of reported phishing sites.
		/// </summary>
		Safe = 0x3,
	 
		/// <summary>
		/// Phishing Filter has analyzed this page and it might be an unsafe page.
		/// </summary>
		Unsafe = 0x4,
	
		/// <summary>
		/// Phishing Filter has analyzed this page and it is definitely fraudulent. 
		/// </summary>
		Fraudulent = 0x5,
	
		/// <summary>
		/// Phishing Filter cannot validate the current page. The database of reported phishing sites is down. 
		/// </summary>
		Offline=0x0100,
	
		/// <summary>
		/// The result of the analysis was provided by the online reporting service.
		/// </summary>
		Online = 0x0200
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Paulo Morgado
Portugal Portugal

Comments and Discussions