LoadSettings(Stream) Метод (Device)
Загружает настройки устройства из потока.
Вызывайте этот метод, только когда устройство открыто (State == DeviceState.Opened).
Вот C#/VB.NET код, который демонстрирует, как загрузить в устройство ранее сохраненные настройки устройства.
Public Sub LoadSettings(device As Vintasoft.Twain.Device)
device.Open()
Using fs As New System.IO.FileStream("scanner-setup.xml", System.IO.FileMode.Open, System.IO.FileAccess.Read)
device.LoadSettings(fs)
End Using
device.Acquire()
End Sub
public void LoadSettings(Vintasoft.Twain.Device device)
{
device.Open();
using (System.IO.FileStream fs = new System.IO.FileStream("scanner-setup.xml", System.IO.FileMode.Open, System.IO.FileAccess.Read))
{
device.LoadSettings(fs);
}
device.Acquire();
}
Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5