Hi
I have a solution of 3 projects. A DocProject, a web service and class. In
the class I include the web service with a web reference and in the web
service the only function helloworld has been commented with:
''' <summary>
''' ngjlkfdgjkdfgjk
''' </summary>
''' <returns>fdgfdgfdg</returns>
''' <remarks>fdgdfgdfgfdg</remarks>
''' <exception cref="
AccessViolationException">kfjlkshfkjsfhdkjshdfkj</exception>
<WebMethod()> _
Public Function HelloWorld() As String
Return "Hello World"
End Function
In the class project I then tried to:
Imports ClassLibrary1
Public Class Class1
Public Sub test()
Dim ws As New localhost.Service1()
ws.HelloWorld()
End Sub
End Class
But when I type ws. to get the IntelliSense tooltip, with the summery, I
only get the function description without the summery.
Is there anything should to get that summery in vs2005???
rrm - 28 Jun 2007 12:30 GMT
Hi
> I have a solution of 3 projects. A DocProject, a web service and class. In
> the class I include the web service with a web reference and in the web
[quoted text clipped - 29 lines]
>
> Is there anything should to get that summery in vs2005???
If I look in the auto generated stub "Reference.vb" I see the none of the
comments are present, within that file (only <remarks/> is pressent). If I
add a comment in the file, then IntelliSense is showing the file just fine.
So how do I ensure that the comments are also available in IntelliSense in a
webservice????