Ejemplo n.º 1
0
 public static bool DeleteUser(string username, bool deleteAllRelatedData)
 {
     return(Provider.DeleteUser(username, deleteAllRelatedData));
 }
Ejemplo 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));
 }
Ejemplo n.º 3
0
 public static bool DeleteUser(string username)
 {
     return(Provider.DeleteUser(username, true));
 }
Ejemplo n.º 4
0
 public static bool DeleteUser(string username)
 {
     SecUtility.CheckParameter(ref username, true, true, true, 0, "username");
     return(Provider.DeleteUser(username, true));
 }