Nettiers.AdventureWorks.Web.Data.LinkedDataSourceEventArgs.LinkedDataSourceEventArgs C# (CSharp) Method

LinkedDataSourceEventArgs() public method

Initializes a new instance of the LinkedDataSourceEventArgs class.
public LinkedDataSourceEventArgs ( object entity, IDictionary inputParameters, int index ) : System
entity object The current business object.
inputParameters IDictionary An IDictionary of name/value pairs.
index int The current position of the specified entity within the collection.
return System
		public LinkedDataSourceEventArgs(object entity, IDictionary inputParameters, int index)
		{
			Entity = entity;
			InputParameters = inputParameters;
			Index = index;
		}
LinkedDataSourceEventArgs