
Registered
Acquires all registered profiles.
■ Syntax
[VB]
Public Shared ReadOnly Property Registered As RF.Profile[]
[C#]
public static RF.Profile[] Registered {get;}
■ Property
All registered profile instances.
■ Exceptions
■ Note
It is necessary to call the RF.Profile.Update method and copy the Zero Config GUI
settings to the BHT wireless registry prior to acquiring all registered profiles.
[Ex.] Delete all registered profiles.
[VB]
' Copies settings from the Zero Config GUI to the BHT wireless registry.
RF.Profile.Update()
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#]
// Copies settings from the Zero Config GUI to the BHT wireless registry.
RF.Profile.Update();
RF.Profile[] regProfiles = RF.Profile.Registered
foreach (RF.Profile prof in regProfiles){
RF.Profile.Remove(prof.SSID, prof.InfraMode);
}
RF.Profile.Commit(); // Updates to the Zero Config GUI.
233
Comentarios a estos manuales