
- 238 -
[Ex.] Delete all registered profiles.
[VB]
RF.Profile.Update() ' Copies settings from the Zero Config GUI to the BHT wireless
registry.
Dim regProfiles() As RF.Profile = RF.Profile.Registered
For Each prof As RF.Profile In regProfiles
RF.Profile.Remove(prof.SSID, prof.InfraMode)
Next
RF.Profile.Commit() ' Updates to the Zero Config GUI.
[C#]
RF.Profile.Update() ' Copies settings from the Zero Config GUI to the BHT wireless
registry.Zero Config GUI.
RF.Profile[] regProfiles = RF.Profile.Registered
foreach (RF.Profile prof In regProfiles)
RF.Profile.Remove(prof.SSID, prof.InfraMode)
Next
RF.Profile.Commit() ' Updates to the Zero Config GUI.
Komentáře k této Příručce