wip
This commit is contained in:
@@ -44,8 +44,9 @@ namespace AnotherReplayReader
|
||||
}
|
||||
}
|
||||
|
||||
private async Task Display(string filter = "", string nameFilter = "")
|
||||
private Task Display(string filter = "", string nameFilter = "")
|
||||
{
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private async void OnClick(object sender, RoutedEventArgs e)
|
||||
@@ -87,11 +88,11 @@ namespace AnotherReplayReader
|
||||
}
|
||||
}
|
||||
|
||||
private async Task<bool> UpdateIpTable(IPAddress ip, string idText)
|
||||
private Task<bool> UpdateIpTable(IPAddress ip, string idText)
|
||||
{
|
||||
var bytes = ip.GetAddressBytes();
|
||||
var ipNum = (uint)bytes[0] * 256 * 256 * 256 + bytes[1] * 256 * 256 + bytes[2] * 256 + bytes[3];
|
||||
return false;
|
||||
return Task.FromResult(false);
|
||||
}
|
||||
|
||||
private async void OnIpFieldChanged(object sender, System.Windows.Controls.TextChangedEventArgs e)
|
||||
|
||||
Reference in New Issue
Block a user