Exemple #1
0
        public WlanCommand CreateWlanCommand(string name, object networkType, string key)
        {
            WlanProfile wlanProfile = this.CreateWlanProfile(name, networkType, key);

            return(wlanProfile != null ? new WlanCommand(wlanProfile) : null);
        }
 public WlanCommand(WlanProfile profile)
 {
     this._profile    = profile;
     this.Description = profile.SSID;
 }
Exemple #3
0
 private void ResetState() => this._deviceProfile = null;