I have the following WinRT code which works fine to discover active VPN Profiles:
VpnManagementAgent vpn;
auto profiles = vpn.GetProfilesAsync().get();
wprintf(L"Found %d profiles
", profiles.Size());
for (auto vp : profiles)
{
wprintf(L"Found profile %s
", vp.ProfileName().c_str());
}
I would like to check the ConnectionStatus but this is not available on the IVpnProfile interface.
I have tried adding the following to no avail as ConnectionStatus is available in the concrete VpnPlugInProfile and VpnNativeProfile classes:
VpnPlugInProfile pp = vp.as<VpnPlugInProfile>();
if (pp != nullptr)
wprintf(L"ConnectionStatus = %d
", pp.ConnectionStatus());
This just give an Invalid Handle error.
Is there a way of getting ConnectionStatus from IVpnProfile?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…