InetTransport.TempFilesFolder
InetTransport
See also
Specifies the folder for temporary files.
[C++]
void setTempFilesFolder(char* Value);
char* getTempFilesFolder(void);
[Pascal]
property TempFilesFolder : string;
[VB6]
Property TempFilesFolder As String
[ActiveX]
HRESULT _stdcall TempFilesFolder([in] BSTR Value );
HRESULT _stdcall TempFilesFolder([out, retval] BSTR * Value );
[C#]
public string TempFilesFolder;
[VB.NET]
Public Property TempFilesFolder As String
[Java]
public void setTempFilesFolder(String value;
public String getTempFilesFolder;
[Java ME]
not applicable;
[Palm]
not applicable;
[DLL]
void __stdcall MCInetTransportSetTempFilesFolder(HMCInetTransport h, char* value);
char* __stdcall MCInetTransportGetTempFilesFolder(HMCInetTransport h);
- h - handle to the object that was returned by Create method
This property specifies the folder in which the temporary files are created. If the value is empty, system temporary folder is used.
This property is used only when UseTempFilesForIncoming or UseTempFilesForOutgoing properties are set to true.
|