Method |
Description |
---|
AcDbHostApplicationServices::getRemoteFile (ACHAR *, ACHAR (&pszLocalFile)) |
Helper template for callers passing fixed size arrays. |
 AcDbHostApplicationServices::getRemoteFile (ACHAR *, ACHAR *, size_t, bool) |
This method downloads the resource (file) identified by the URL pszURL to the local file pszLocalFile.The Boolean argument bIgnoreCache determines whether the file should be downloaded even if it has already been transferred earlier in the session.This method, if you implement it, should allow the user transparent access to files on remote servers on the Internet. The first argument, pszURL, is the URL of the file that the user would like to download, and the second argument is a buffer to hold the path to a file on the local host to which the remote resource... more |
AcDbHostApplicationServices::getRemoteFile (ACHAR *, AcString&, bool) |
This method downloads the resource (file) identified by the URL pszURL to the local file pszLocalFile.The bool argument bIgnoreCache determines whether the file should be downloaded even if it has already been transferred earlier in the session.This method, if you implement it, should allow the user transparent access to files on remote servers on the Internet. The first argument, pszURL, is the URL of the file that the user would like to download, and the second argument is a string to hold the path to a file on the local host to which the remote resource... more |