ConfigVariablesGetByScriptName() public method

Get The config variables get by scriptname.
public ConfigVariablesGetByScriptName ( string ScriptName ) : DataTable
ScriptName string Name of the script.
return System.Data.DataTable
Beispiel #1
0
 /// <summary>
 /// Gets the variables get by scriptname.
 /// </summary>
 /// <param name="ScriptName">Name of the script.</param>
 /// <returns></returns>
 public string ConfigVariablesGetByScriptName(string ScriptName)
 {
     DataTable returnTable = new DataTable();
     Atul_v1Data adb = new Atul_v1Data();
     returnTable = adb.ConfigVariablesGetByScriptName(ScriptName);
     return JsonMethods.GetJSONString(returnTable);
 }