How to get the webservice version inside the webservice code ?

  • Thread starter Thread starter Gilbert Tordeur
  • Start date Start date
G

Gilbert Tordeur

Hello.

Context = VB 2008.

In a WinForm application or in a dll, I just write
My.Application.Info.Version. But in a webservice program, the My.Application
object does not exist. How can I do ?

Thank you in advance,
Gilbert
 
Web sites don't really have a version. If you look at the config file, there
is no version information. You could retrieve the version info from a sub
assembly if you wanted.

David

======================================
David McCarter [Microsoft MVP]
www.dotNetTips.com
David McCarter''s .NET Coding Standards available at:
http://codingstandards.notlong.com
 
Back
Top