本文介绍了自定义类型:类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




我是网络服务的新手,我在弄清楚如何定义一个自定义对象时遇到了一些麻烦通过网络服务工作。


例如,我在服务器端有以下内容:


公共类令牌

{


私有字符串firstID;


私有字符串secondID;


公共字符串getFirstD (){return firstID; }


公共字符串getSecondID(){return secondID; } $ / $

public void setFirstID(string id){firstID = id; } $ / $

public void setSecondID(string id){secondID = id; }


}


[WebMethod]


public bool GetResellerList2(令牌令牌,字符串languageisocode )


{


返回true;


}

当我在客户端查看对象时,我看不到任何属性

或Token类中定义的方法。我错过了什么?


谢谢,


克里斯

Hi,

I''m new to web services and I''m having some trouble figuring out how to
define a custom object that works through the webservice.

For example, I have the following on the server side:

public class Token
{

private string firstID;

private string secondID;

public string getFirstD() { return firstID; }

public string getSecondID() { return secondID; }

public void setFirstID(string id) { firstID= id; }

public void setSecondID(string id) { secondID= id; }

}

[WebMethod]

public bool GetResellerList2(Token token, string languageisocode)

{

return true;

}
When I view the object on the client side, I can''t see any of the properties
or methods defined in the Token class. What am I missing?

Thanks,

Chris

推荐答案







这篇关于自定义类型:类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 04:05