Click here to Skip to main content
15,896,912 members
Articles / Code generation

Semi generated crawler

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
22 Jun 2012CPOL4 min read 21.6K   599   10  
Leverage Visual studio Web Test Framework for your crawling needs...
using System;
namespace LightWebTestFramework
{
	[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
	public sealed class DataBindingAttribute : Attribute
	{
		private string m_dataSourceName;
		private string m_tableName;
		private string m_columnName;
		private string m_contextVariableName;
		public string DataSourceName
		{
			get
			{
				return this.m_dataSourceName;
			}
		}
		public string TableName
		{
			get
			{
				return this.m_tableName;
			}
		}
		public string ColumnName
		{
			get
			{
				return this.m_columnName;
			}
		}
		public string ContextVariableName
		{
			get
			{
				return this.m_contextVariableName;
			}
		}
		public DataBindingAttribute(string dataSourceName, string tableName, string columnName, string contextVariableName)
		{
			this.m_dataSourceName = dataSourceName;
			this.m_tableName = tableName;
			this.m_columnName = columnName;
			this.m_contextVariableName = contextVariableName;
		}
	}
}

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 Freelance
France France
I am currently the CTO of Metaco, we are leveraging the Bitcoin Blockchain for delivering financial services.

I also developed a tool to make IaaS on Azure more easy to use IaaS Management Studio.

If you want to contact me, go this way Smile | :)

Comments and Discussions