using System.Diagnostics; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using DT2; namespace UrlTester; /// /// Interaction logic for MainWindow.xaml /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } public void GetUrl(object sender, RoutedEventArgs e) { var stopWatch = new Stopwatch(); stopWatch.Start(); int size = new DT2.UrlTester().GetUrlSync(urlBox.Text); stopWatch.Stop(); bytesBox.Text = $"{size} bytes"; timeBox.Text = $"{stopWatch.ElapsedMilliseconds} ms"; } }