Device.GetFileDeployer 方法
更新:2007 年 11 月
傳回用來在裝置和桌上型電腦之間複製檔案的 FileDeployer 物件。
命名空間: Microsoft.SmartDevice.Connectivity
組件: Microsoft.SmartDevice.Connectivity (在 Microsoft.SmartDevice.Connectivity.dll 中)
語法
Public Function GetFileDeployer As FileDeployer
Dim instance As Device
Dim returnValue As FileDeployer
returnValue = instance.GetFileDeployer()
public FileDeployer GetFileDeployer()
public:
FileDeployer^ GetFileDeployer()
public function GetFileDeployer() : FileDeployer
傳回值
型別:Microsoft.SmartDevice.Connectivity.FileDeployer
FileDeployer 型別的物件。
例外狀況
例外狀況 | 條件 |
---|---|
DeviceNotConnectedException | 裝置未連接。 |
備註
裝置必須連接。
範例
Dim fd As FileDeployer = device.GetFileDeployer()
' Copy file from device to desktop.
fd.ReceiveFile("\\windows\\Alarm1.wav", ".\\Alarm1.wav")
' Copy file from desktop to device.
fd.SendFile(".\\Alarm1.wav", "\\Program Files\\Alarm1.wav")
FileDeployer fd = device.GetFileDeployer();
// Copy file from device to desktop.
fd.ReceiveFile("\\windows\\Alarm1.wav", ".\\Alarm1.wav");
// Copy file from desktop to device.
fd.SendFile(".\\Alarm1.wav", "\\Program Files\\Alarm1.wav");
使用權限
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。