The location where file data is temporarily saved during the upload process.
Syntax
Visual Basic (Declaration) | |
---|
<DartDescriptionAttribute("The location where file data is temporarily saved during the upload process. If this property is not set, files will be uploaded directly to the SavePath. If both SavePath and TempPath are not set, files will be uploaded to server memory.")>
<DefaultValueAttribute()>
Public Property TempPath As String |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As UploadManager
Dim value As String
instance.TempPath = value
value = instance.TempPath |
C# | |
---|
[DartDescriptionAttribute("The location where file data is temporarily saved during the upload process. If this property is not set, files will be uploaded directly to the SavePath. If both SavePath and TempPath are not set, files will be uploaded to server memory.")]
[DefaultValueAttribute()]
public string TempPath {get; set;} |
C++/CLI | |
---|
[DartDescriptionAttribute("The location where file data is temporarily saved during the upload process. If this property is not set, files will be uploaded directly to the SavePath. If both SavePath and TempPath are not set, files will be uploaded to server memory.")]
[DefaultValueAttribute()]
public:
property String^ TempPath {
String^ get();
void set ( String^ value);
} |
Property Value
The default value is "".
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also