Esempio n. 1
0
 public static bool DeleteUser(string username, bool deleteAllRelatedData)
 {
     return(Provider.DeleteUser(username, deleteAllRelatedData));
 }
Esempio n. 2
0
 public static bool DeleteUser(string username, bool deleteAllRelatedData)
 {
     SecUtility.CheckParameter(ref username, true, true, true, 0, "username");
     return(Provider.DeleteUser(username, deleteAllRelatedData));
 }
Esempio n. 3
0
 public static bool DeleteUser(string username)
 {
     return(Provider.DeleteUser(username, true));
 }
Esempio n. 4
0
 public static bool DeleteUser(string username)
 {
     SecUtility.CheckParameter(ref username, true, true, true, 0, "username");
     return(Provider.DeleteUser(username, true));
 }