Beispiel #1
0
 public void Save()
 {
     ProfileHandler.SaveProfiles(this);
 }
Beispiel #2
0
 public List <Profile> GetProfiles()
 {
     return(ProfileHandler.GetProfiles(this));
 }
Beispiel #3
0
 public void Delete(string name)
 {
     ProfileHandler.DeleteProfile(this, name, true);
 }
Beispiel #4
0
 public Profile GetByName(string name)
 {
     return(ProfileHandler.GetProfileByName(this, name));
 }
Beispiel #5
0
 public bool Exists(string name)
 {
     return(ProfileHandler.ProfileExists(this, name));
 }