本文介绍了当我使用fs.Names.Add(“%")时,使用C#查询judidi不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在没有BusinessKey的情况下使用C#查询JUDDI.
我找到了这个示例,但是仅当我在变量EntredKey中引入BusinessKey时,它才有效!
I want to Inquiry JUDDI with C# without having BusinessKey.
I find this example but it works only when I introduce BusinessKey in my variable EntredKey!
FindService fs = new FindService();
if (EntredKey != "")
{
fs.BusinessKey = EntredKey;
}
else
{
fs.Names.Add("%");
}
ServiceList servlist = fs.Send();
否则,当我使用以下示例时,找不到任何内容:
otherwise when I use the following exemple nothing is found:
FindService fs = new FindService();
fs.Names.Add("%");
ServiceList servlist = fs.Send();
[edit]已添加代码块-OriginalGriff [/edit]
[edit]Code blocks added - OriginalGriff[/edit]
推荐答案
这篇关于当我使用fs.Names.Add(“%")时,使用C#查询judidi不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!