Visual Studio Wcf 测试客户端 - 输入 Int 数组
我发现 Visual Studio WCF 测试客户端在快速测试 WCF 服务时非常有用。 这是在相对于 Visual Studio 安装目录的位置找到的测试客户端:
\Common7\IDE\WcfTestClient.exe
我有一些服务调用需要 System.Int32[] 类型的参数
我似乎无法弄清楚要为此参数输入什么值,因为我不断收到错误
“[输入的值]”不是此类型的有效值
尝试输入值 27 我已尝试以下操作,但全部失败
27
{ 27 }
新的 System.Int32[] { 27 }
任何人都可以帮助如何做到这一点
I've found the Visual Studio WCF test client quite useful when it comes to a quick test of my WCF service.
This is the test client found in this location relative to your Visual Studio install directory:
\Common7\IDE\WcfTestClient.exe
I have a few service calls that require a parameter of type System.Int32[]
I can't seem to figure out what values to enter against for this parameter as i keep receiving the error
'[value entered]' is not a valid value for this type
Trying to enter the value 27 i have tried the following, but all fails
27
{ 27 }
new System.Int32[] { 27 }
Can anyone please help with how to do this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
Value
列中输入length=1
,将出现一个▶
,允许您在数组中添加值:Type
length=1
in theValue
column, a▶
will appear allowing you to add values in the array: