Tiraggo.Interfaces.tgParameters.this C# (CSharp) Method

this() public method

Use this method to fetch a given tgParameter by name. There should be no prefix such as @, ? or : in the name.
public this ( string name ) : tgParameter
name string The name of the parameter without a prefix, for example, "EmployeeID" not "@EmployeeID".
return tgParameter
        public tgParameter this[string name]
        {
            get
            {
                tgParameter param = null;

                if (this.hash.ContainsKey(name))
                {
                    param = this.hash[name];
                }

                return param;
            }
        }