[CE C# Addin]command.xml能否传递参数

在command.xml中有

<KeyinHandler Keyin="mycmd test" Function="mytest"/>

调用mytest(string unparsed)成功。

请问command.xml中能否支持传递参数(不能是unparsed,这里只支持限定的字符串,如果下面的1/2),比如

<KeyinHandler Keyin="mycmd test 1" Function="mytest(1)"/>

<KeyinHandler Keyin="mycmd test 2" Function="mytest(2)"/>

我现在测试的结果,似乎command.xml不能带参数,顶多把unparsed的值传过去,不能限定指定的字符串。

谢谢。