ScanMaster.ParameterHelper.HasParameter C# (CSharp) Method

HasParameter() public method

public HasParameter ( String key ) : bool
key String
return bool
        public bool HasParameter(String key)
        {
            DataRow row = parameterTable.Rows.Find(key);
            return (row != null);
        }