无法将属性“ ScriptServiceAttribute”应用于“ MethodName”,因为该属性在此声明类型上无效

时间:2018-07-05 07:48:15

标签: ajax vb.net webmethod

下面是WebMethod的定义,但我遇到了错误

<WebMethod()> _
<ScriptService()>
Public Function GetCountryByIP(ipAddress As String) As String
    Return "Hello World"
End Function
  

错误132属性'ScriptServiceAttribute'无法应用于'GetCountryByIP',因为该属性在此声明类型上无效。

1 个答案:

答案 0 :(得分:0)

error message很清楚。

根据documentation ScriptServiceAttribute必须应用于类,而不能应用于方法。