June 2002
Beginner
759 pages
80h 42m
English
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")