我的应用程序中有两种方法,它们都从不同的 Web 服务返回相似的对象。
第一个编译好,但我刚刚添加的第二个不会编译,给我一个错误消息'方法必须返回一个值'
这是我的代码:
public SforceService() {
this.Url = global::email2case_winForm.Properties.Settings.Default.email2case_sforce_SforceService;
if ((this.IsLocalFileSystemWebService(this.Url) == true)) {
this.UseDefaultCredentials = true;
this.useDefaultCredentialsSetExplicitly = false;
}
else {
this.useDefaultCredentialsSetExplicitly = true;
}
}
public SforceServiceSandbox()
{
//
//
this.Url = global::email2case_winForm.Properties.Settings.Default.SForceService;
if ((this.IsLocalFileSystemWebService(this.Url) == true))
{
this.UseDefaultCredentials = true;
this.useDefaultCredentialsSetExplicitly = false;
}
else
{
this.useDefaultCredentialsSetExplicitly = true;
}
}
请问我错过了什么,我应该添加一个特殊的声明吗?