版本:Unity 6 (6000.0)
语言英语
  • C#

NetworkReachability.ReachableViaCarrierDataNetwork

建议更改

成功!

感谢帮助我们提高 Unity 文档的质量。虽然并非所有提交意见都能够被采纳,我们会阅读用户提供的每一条变更建议,并在合适的地方进行更新。

关闭

提交失败

由于某些原因无法提交您建议的更改。请在几分钟后重试。感谢花时间帮助我们提高 Unity 文档的质量。

关闭

取消

说明

可以经由运营商数据网络访问网络。

//Attach this script to a GameObject
//This script checks the device’s ability to reach the internet and outputs it to the console window

using UnityEngine;

public class Example : MonoBehaviour { string m_ReachabilityText;

void Update() { //Output the network reachability to the console window Debug.Log("Internet : " + m_ReachabilityText); //Check if the device cannot reach the internet if (Application.internetReachability == NetworkReachability.NotReachable) { //Change the Text m_ReachabilityText = "Not Reachable."; } //Check if the device can reach the internet via a carrier data network else if (Application.internetReachability == NetworkReachability.ReachableViaCarrierDataNetwork) { m_ReachabilityText = "Reachable via carrier data network."; } //Check if the device can reach the internet via a LAN else if (Application.internetReachability == NetworkReachability.ReachableViaLocalAreaNetwork) { m_ReachabilityText = "Reachable via Local Area Network."; } } }