Метод IDTSHttpClientConnection100.DownloadFile
Этот API-интерфейс поддерживает инфраструктуру SQL Server 2012 и не предназначен для использования непосредственно из кода.
Downloads data from the resource specified by ServerURL property to a local file.
Пространство имен: Microsoft.SqlServer.Dts.Runtime.Wrapper
Сборка: Microsoft.SqlServer.DTSRuntimeWrap (в Microsoft.SqlServer.DTSRuntimeWrap.dll)
Синтаксис
'Декларация
Sub DownloadFile ( _
FileName As String, _
vbOverwriteDestination As Boolean _
)
'Применение
Dim instance As IDTSHttpClientConnection100
Dim FileName As String
Dim vbOverwriteDestination As Boolean
instance.DownloadFile(FileName, vbOverwriteDestination)
void DownloadFile(
string FileName,
bool vbOverwriteDestination
)
void DownloadFile(
[InAttribute] String^ FileName,
[InAttribute] bool vbOverwriteDestination
)
abstract DownloadFile :
FileName:string *
vbOverwriteDestination:bool -> unit
function DownloadFile(
FileName : String,
vbOverwriteDestination : boolean
)
Параметры
- FileName
Тип: System.String
The name of the local file into which the downloaded data is stored.
- vbOverwriteDestination
Тип: System.Boolean
True to overwrite the existing file; otherwise, false.
Замечания
For more information, see HttpClientConnection100Class.