- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我需要在 中检测WinRT 应用程序在哪些协议(protocol)上有互联网访问(IPv4/IPv6/两者)。我有以下代码来确定支持的协议(protocol):
enum IpVersion
{
None = 0,
IPv4 = 1,
IPv6 = 2,
IPv46 = 3
}
IpVersion GetIpVersion(ConnectionProfile profile)
{
var result = IpVersion.None;
if (profile != null && profile.NetworkAdapter != null)
{
var hostnames = NetworkInformation.GetHostNames().Where(h => h.IPInformation != null &&
h.IPInformation.NetworkAdapter != null &&
h.IPInformation.NetworkAdapter.NetworkAdapterId == profile.NetworkAdapter.NetworkAdapterId);
foreach (var hostname in hostnames)
{
if (hostname.Type == HostNameType.Ipv4)
{
result |= IpVersion.IPv4;
}
else if (hostname.Type == HostNameType.Ipv6)
{
result |= IpVersion.IPv6;
}
}
}
return result;
}
GetIpVersion(NetworkInformation.GetInternetConnectionProfile());
Wi-Fi status
中找到。 window :
NetworkConnectivityLevel.InternetAccess
,但它不包含有关存在连接的协议(protocol)的信息。
bool internetAccess = connectionProfile.GetNetworkConnectivityLevel() == NetworkConnectivityLevel.InternetAccess
最佳答案
在您的代码中,ConnectionProfile
是什么?类型?没有 a good, minimal, complete code example 就很难理解这个问题并准确解释该代码的作用以及为什么它与您想要的不同。
也就是说,如果我正确理解了这个问题,您正在尝试确定您的 Internet 连接是否同时支持 IPv4 和 IPv6。如果是这样,那么我看不出有任何方法可以从 API 级别做到这一点。本地 PC 实际上可以安装 IPv4 协议(protocol),而无需连接到允许传输该协议(protocol)上的流量的网络。即使 LAN 支持该协议(protocol),互联网连接本身也可能只支持 IPv6。
同样的事情也适用于其他方式(即具有本地 IPv6 支持,但仅支持 Internet 上的 IPv4)。
在我看来,唯一可靠的方法与许多其他情况所需的方法相同:尝试一下,看看它是否有效。 IE。尝试通过所需的协议(protocol)版本连接到 Internet 上的远程端点;如果失败,则不支持。如果成功,则支持。
编辑:
感谢您更新问题。它仍然不是最好的代码示例,但它稍微改进了这个问题。
我仍然不是 100% 你需要做的事情,也不是我是否有对你最有用的方法。但这是一个简短的程序,我认为它可以满足您的需求:
XAML:
<Page x:Class="TestSO32781692NetworkProtocolConnectivity.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:TestSO32781692NetworkProtocolConnectivity"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
DataContext="{Binding RelativeSource={RelativeSource Mode=Self}}"
mc:Ignorable="d">
<StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<StackPanel.Resources>
<Style TargetType="TextBlock">
<Setter Property="FontSize" Value="24"/>
</Style>
</StackPanel.Resources>
<StackPanel Orientation="Horizontal" Margin="10, 50, 10, 0">
<TextBlock Text="IpV4: "/>
<TextBlock Text="{Binding IpV4}"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="10, 10, 10, 0">
<TextBlock Text="IpV6: "/>
<TextBlock Text="{Binding IpV6}"/>
</StackPanel>
<Button Content="Check Network" Click="Button_Click"/>
<ListBox ItemsSource="{Binding Profiles}"/>
</StackPanel>
</Page>
using System;
using System.Collections.ObjectModel;
using System.Linq;
using Windows.Networking;
using Windows.Networking.Connectivity;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
namespace TestSO32781692NetworkProtocolConnectivity
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainPage : Page
{
public static readonly DependencyProperty IpV4Property = DependencyProperty.Register(
"IpV4", typeof(bool), typeof(MainPage), new PropertyMetadata(false));
public static readonly DependencyProperty IpV6Property = DependencyProperty.Register(
"IpV6", typeof(bool), typeof(MainPage), new PropertyMetadata(false));
public static readonly DependencyProperty ProfilesProperty = DependencyProperty.Register(
"Profiles", typeof(ObservableCollection<string>), typeof(MainPage), new PropertyMetadata(new ObservableCollection<string>()));
public bool IpV4
{
get { return (bool)GetValue(IpV4Property); }
set { SetValue(IpV4Property, value); }
}
public bool IpV6
{
get { return (bool)GetValue(IpV6Property); }
set { SetValue(IpV6Property, value); }
}
public ObservableCollection<string> Profiles
{
get { return (ObservableCollection<string>)GetValue(ProfilesProperty); }
set { SetValue(ProfilesProperty, value); }
}
public MainPage()
{
this.InitializeComponent();
}
private async void Button_Click(object sender, RoutedEventArgs e)
{
bool ipV4 = false, ipV6 = false;
ConnectionProfile internetProfile = NetworkInformation.GetInternetConnectionProfile();
Profiles.Clear();
Profiles.Add("Internet profile: " + internetProfile.ProfileName);
var hostNames = NetworkInformation.GetHostNames()
.Where(h => h.IPInformation != null &&
h.IPInformation.NetworkAdapter != null);
foreach (HostName hostName in hostNames)
{
ConnectionProfile hostConnectedProfile =
await hostName.IPInformation.NetworkAdapter.GetConnectedProfileAsync();
if (hostConnectedProfile.NetworkAdapter.NetworkAdapterId == internetProfile.NetworkAdapter.NetworkAdapterId)
{
Profiles.Add("Host adapter: " + hostName.DisplayName);
if (hostName.Type == HostNameType.Ipv4)
{
ipV4 = true;
}
else if (hostName.Type == HostNameType.Ipv6)
{
ipV6 = true;
}
}
}
IpV4 = ipV4;
IpV6 = ipV6;
}
}
}
NetworkInformation.GetConnectionProfiles()
方法。尽管这似乎是扩展您当前方法的有希望的方法,尽管
the documentation实际上 promise “调用 GetConnectionProfiles 方法会检索设备上当前建立的所有连接的配置文件,
包括 Internet 连接。”[强调我的],事实证明并非如此。特别是,至少在我安装并启用了 Hyper-V 的机器上(对于那些进行 WinRT/Windows Phone 开发的人来说这是一个常见的场景:)),
ConnectionProfile
NetworkInformation.GetInternetConnectionProfile()
返回的对象实际上不包含在
NetworkInformation.GetConnectionProfiles()
返回的配置文件集合中.
ConnectionProfile
对应的主机名对象。由
GetInternetConnectionProfile()
返回.
GetNetworkConnectivityLevel()
的明显问题外没有提供实际使用的协议(protocol),我发现该方法甚至没有返回至少直观地被认为是正确的信息。
FindConnectionProfilesAsync(new ConnectionProfileFilter { IsConnected = true })
确实返回与我用来连接到 Internet 的连接(例如无线网络)相对应的配置文件,但是当我调用
GetNetworkConnectivityLevel()
时在该配置文件上,它返回
LocalAccess
只要。我猜这与我上面提到的安装 Hyper-V 的问题有关。
ConnectionProfile
来解决。由
GetConnectedProfileAsync()
返回
NetworkAdapter
的方法
FindConnectionProfilesAsync()
返回的每个连接配置文件的到
GetInternetConnectionProfile()
返回的配置文件.对顶级配置文件的网络适配器的配置文件进行间接处理似乎会产生预期的 Internet 连接配置文件。
关于c# - 检测当前连接是否同时支持 IPv4 和 IPv6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32781692/
我试图通过这段代码读取未知数量的整数: while (1) { int c = getchar (); if (c == EOF) break;
我正试图找到一个类似于谷歌分析日期选择器的日期选择器: 知道 jQuery 是否提供了类似的东西吗? 最佳答案 这个 Twitter Bootstrap 风格的日期范围选择器非常接近。 https:/
我正在使用 javascript。如何获取当前 URL 的路径并将其分配给我的代码?这是我的代码: $(document).ready(function() { $(".share").hides
如何获得今天的Julian day number (JDN)相等的?或任何日期? 我看了又看,但只发现了一些产生“year-dayOfYear”的函数,而不是:2457854。 最佳答案 在 bash
我有相当简单的 UDP 服务器写在 c 上。 有时我需要知道在套接字中排队的所有 udp 数据包(字节)的当前长度。 据我了解,getsockopt 没有得到这样的信息。 欢迎使用 Linux 和 F
我一直在寻找几个小时来找到一个可以在图像中添加诸如“填充:5px”之类的东西的插件。每个人都通过纯 html 做到这一点吗?我们的客户需要一种方法来简单地使用按钮或右键单击上下文菜单来添加它。有什么建
是否有可能获得当前正在执行的 TCL 脚本的完整路径? 在 PHP 中,它将是:__FILE__ 最佳答案 根据“当前正在执行的 TCL 脚本”的含义,您实际上可能会寻找 info script ,甚
我最近从直接使用 ISession 转向了包装的 ISession,即工作单元类型模式。 我曾经使用 SQL Lite(内存中)对此进行测试。我有一个简单的帮助器类,它配置我的 SessionFact
我按照步骤操作 here在 WebStorm 中配置代码完成和其他内容,但我仍然收到以下语法错误。 我该如何解决这个问题? 最佳答案 通过相应地将“JavaScript 语言版本”(Settings/
我可以为我团队的 TFS 当前 Sprint 任务板添加书签吗?我们有两周的冲刺,因此 URL 每两周更改一次。 默认 URL 的形式为: http://[Server]/tfs/[Project]/
是否有 Subversion 命令可以显示当前版本号? 在svn checkout之后,我想启动一个脚本并需要变量中的修订号。如果有像 svn info get_revision_number 这样的
我正在编写表单的一个组件 首次安装组件时,sources={{}} ,一本空字典。由于该组件包装了现有的 Javascript 库,因此我正在实现一个自定义比较函数。为了让这个 diffing 函数
无论系统时间设置为多少以及机器所在的时区,我都需要正确的 UTC 时间。 (即使我必须打电话到互联网才能同步......) 是否有一些库或其他方法可以优雅地做到这一点? 最佳答案 如果您想获得准确可靠
我一边编码,一边拿出一些我和 friend 建立的旧网站来重新开始工作。我已经有一段时间没有做过任何 AJAX 了,当我试图找出我的代码失败的地方时,我发现没有显示很多资源。我猜这是因为我使用的是旧方
由于对性能的巨大影响,我从不怀疑我现在的桌面CPU是否有分支预测。当然可以。但各种 ARM 产品又如何呢? iPhone或Android手机有分支预测吗?较旧的任天堂 DS?基于 PowerPC 的
我有一个具有以下有效负载的 JWT: { "id": "394a71988caa6cc30601e43f5b6569d52cd7f6df", "jti": "394a71988caa6cc30
从其他一些帖子中,我能够通过以下方式获取当前 URI: 但是以下方法不起作用: 我很好奇为什么上面的方法不起作用,以及如何将当前 URI 分配给字符串。 最佳答案 每the javadocs ,g
我在表格 View 中有几个单元格。现在在任何给定的时间点,我想计算 View 中单元格的当前高度,即如果它是 View 的 3/4,它应该返回 (cellheight)*3/4 高度。 我通过以下方
这是网站的身份验证脚本。这安全吗?是最近的节目吗?它已经过时了吗?是否有“更好更安全的方法”我很新,但我没有看到太多地方使用 header 授权。 如有任何帮助,我们将不胜感激!这是我制作的第一个登录
我已经在其他 stackoverflow 线程上检查过这个错误,但在我的代码中没有发现任何错误。也许我累了,但我觉得还好。 网站.urls.py: from django.conf.urls impo
我是一名优秀的程序员,十分优秀!