home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Version

$

inet


->Version()

Returns the version numbers for the Win32::Internet package and the WININET.DLL version, as an array or string, depending on the context. The string returned will contain "package_version/DLL_version", while the array will contain: "package_version", "DLL_version". For example:

$version = $inet->Version(); # should return "0.06/4.70.1215"
@version = $inet->Version(); # should return ("0.06", "4.70.1215")