Ejemplo n.º 1
0
        public static MembershipUserCollection FindUsersByName(string usernameToMatch,
                                                               int pageIndex,
                                                               int pageSize,
                                                               out int totalRecords)
        {
            SecUtility.CheckParameter(ref usernameToMatch,
                                      true,
                                      true,
                                      false,
                                      0,
                                      "usernameToMatch");

            if (pageIndex < 0)
            {
                throw new ArgumentException(SR.GetString(SR.PageIndex_bad), "pageIndex");
            }

            if (pageSize < 1)
            {
                throw new ArgumentException(SR.GetString(SR.PageSize_bad), "pageSize");
            }

            return(Provider.FindUsersByName(usernameToMatch,
                                            pageIndex,
                                            pageSize,
                                            out totalRecords));
        }
Ejemplo n.º 2
0
        public static MembershipUserCollection FindUsersByName(string usernameToMatch)
        {
            SecUtility.CheckParameter(ref usernameToMatch, true, true, false, 0, "usernameToMatch");
            int totalRecords = 0;

            return(Provider.FindUsersByName(usernameToMatch, 0, 0x7fffffff, out totalRecords));
        }
Ejemplo n.º 3
0
 public static MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)
 {
     return(Provider.FindUsersByName(usernameToMatch, pageIndex, pageSize, out totalRecords));
 }
Ejemplo n.º 4
0
        public static MembershipUserCollection FindUsersByName(string usernameToMatch)
        {
            int totalRecords;

            return(Provider.FindUsersByName(usernameToMatch, 0, int.MaxValue, out totalRecords));
        }