2024-03-21 23:25:00 +00:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Text;
|
2024-03-21 22:24:29 +00:00
|
|
|
|
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;
|
2024-03-21 23:25:00 +00:00
|
|
|
|
using DT2;
|
2024-03-21 22:24:29 +00:00
|
|
|
|
|
2024-03-21 22:43:09 +00:00
|
|
|
|
namespace UrlTester;
|
2024-03-21 22:24:29 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for MainWindow.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
{
|
|
|
|
|
public MainWindow()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2024-03-21 23:25:00 +00:00
|
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
}
|
2024-03-21 22:24:29 +00:00
|
|
|
|
}
|