我想在Visual Studio中本地调试WCF服务。调用的函数如下所示:
public void PerformAction(Directory[] dirs) {
....
}
目录是具有某些属性的类。在WCF测试客户端中,我想测试功能,但是如何设置目录数组的输入值?
答案 0 :(得分:1)
以默认的WCF模板为例,我做了以下定义。
[OperationContract]
//[WebGet(RequestFormat =WebMessageFormat.Json,ResponseFormat =WebMessageFormat.Json)]
string GetData(CompositeType[] value);
public string GetData(CompositeType[] value)
{
return string.Format("You entered: {0},{1}", value[0].StringValue,value[1].StringValue);
}