次のようなWCFサービスがあります。
public IEnumerable<int> AddProperty(string productId, string propertyClass, Property properties)
そして、次のデータでそれを呼び出しました:
{
"Class":{"Name":"aoeu","Restricted":false,"Type":"ScalarProperty"},
"DisplayName":"aoeu",
"Id":"560",
"Value":"aoeu"
}
そしてそれはうまくいきました。Property
ここで、次のようにサービスに別のサービスを追加したいと思います。
public IEnumerable<int> AddProperty(string productId, string propertyClass, Property properties, Property properties2)
どのデータを渡す必要がありますか? 私はこれを試しました:
{
properties: {
"Class":{"Name":"aoeu","Restricted":false,"Type":"ScalarProperty"},
"DisplayName":"aoeu",
"Id":"560",
"Value":"aoeu"
},
properties2: {
"Class":{"Name":"aoeu","Restricted":false,"Type":"ScalarProperty"},
"DisplayName":"aoeu",
"Id":"560",
"Value":"aoeu"
}
}
しかし、うまくいきませんでした!私はいくつかの異なる方法を試しましたが、それらはすべてうまくいきませんでした:(