Implement URL inspection
This commit is contained in:
parent
af51421b63
commit
f130b631fc
2 changed files with 18 additions and 3 deletions
|
@ -26,8 +26,11 @@
|
||||||
<ColumnDefinition Width="Auto" />
|
<ColumnDefinition Width="Auto" />
|
||||||
<ColumnDefinition Width="*" />
|
<ColumnDefinition Width="*" />
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<Button Content="GetUrl" />
|
<Button Content="GetUrl"
|
||||||
<TextBox Grid.Column="2" />
|
IsDefault="true"
|
||||||
|
Click="GetUrl" />
|
||||||
|
<TextBox Grid.Column="2"
|
||||||
|
x:Name="urlBox" />
|
||||||
</Grid>
|
</Grid>
|
||||||
<StackPanel Orientation="Horizontal">
|
<StackPanel Orientation="Horizontal">
|
||||||
<StackPanel.Resources>
|
<StackPanel.Resources>
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
using System.Text;
|
using System.Diagnostics;
|
||||||
|
using System.Text;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
using System.Windows.Controls;
|
using System.Windows.Controls;
|
||||||
using System.Windows.Data;
|
using System.Windows.Data;
|
||||||
|
@ -8,6 +9,7 @@ using System.Windows.Media;
|
||||||
using System.Windows.Media.Imaging;
|
using System.Windows.Media.Imaging;
|
||||||
using System.Windows.Navigation;
|
using System.Windows.Navigation;
|
||||||
using System.Windows.Shapes;
|
using System.Windows.Shapes;
|
||||||
|
using DT2;
|
||||||
|
|
||||||
namespace UrlTester;
|
namespace UrlTester;
|
||||||
|
|
||||||
|
@ -20,4 +22,14 @@ public partial class MainWindow : Window
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
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";
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue