Kusto 显示功能 |显示有关功能的信息

Kusto show function | show info about function

Kusto 中有显示函数的关键字吗?例如,如果我有这样的功能:

let EnterString = (a:string) { strcat("You entered '", a, "'.") };

我可以调用 .show 之类的东西来显示函数吗?

.show EnterString

预期输出:

let EnterString = (a:string) { strcat("You entered '", a, "'.") };

您可以使用:

.show function EnterString 

.show function

Parameters

The parameters required by the function.

Body

(Zero or more) let statements followed by a valid CSL expression that is evaluated upon function invocation.