Я пытаюсь создать VPN-соединение, используя UWP, но при запуске я получаю исключение из AddProfileFromObjectAsync()
сообщения об исключении .
auto mgr = ref new VpnManagementAgent();
auto profile = ref new VpnNativeProfile();
profile->AlwaysOn = false;
profile->NativeProtocolType = VpnNativeProtocolType::L2tp;
profile->ProfileName = "TestVpn";
profile->RememberCredentials = true;
profile->RequireVpnClientAppUI = true;
profile->RoutingPolicyType = VpnRoutingPolicyType::ForceAllTrafficOverVpn;
profile->TunnelAuthenticationMethod = VpnAuthenticationMethod::PresharedKey;
profile->UserAuthenticationMethod = VpnAuthenticationMethod::Mschapv2;
profile->Servers->Append("45.87.213.134");
auto profileStatus = mgr->AddProfileFromObjectAsync(profile);