【发布时间】:2009-05-06 14:25:13
【问题描述】:
我正在尝试让亚音速在网络服务中运行 我不确定如何返回数据。当它返回任何东西而不是值时,我只会在结果中得到 Object 一词。我错过了什么?
<WebMethod(Description:="Method to retrieveCptCode subsonic List")> _
Public Function GetSubCptCodes() As CPTCodeCollection
Dim coll As CPTCodeCollection = New CPTCodeCollection()
Dim qry As Query = New Query(CPTCode.Schema)
coll.LoadAndCloseReader(qry.ExecuteReader())
Return coll
End Function
【问题讨论】:
标签: asp.net vb.net web-services subsonic