GetCurrentNetworkName() public static method

public static GetCurrentNetworkName ( ) : string
return string
Exemplo n.º 1
0
 private async void UpdateNetworkInfo()
 {
     this.DeviceName.Text         = DeviceInfoPresenter.GetDeviceName();
     this.IPAddress1.Text         = NetworkPresenter.GetCurrentIpv4Address();
     this.NetworkName1.Text       = NetworkPresenter.GetCurrentNetworkName();
     this.NetworkInfo.ItemsSource = await NetworkPresenter.GetNetworkInformation();
 }
Exemplo n.º 2
0
 private void UpdateNetworkInfo()
 {
     this.DeviceName.Text   = DeviceInfoPresenter.GetDeviceName();
     this.IPAddress1.Text   = NetworkPresenter.GetCurrentIpv4Address();
     this.NetworkName1.Text = NetworkPresenter.GetCurrentNetworkName() ?? "Not connected";
 }