System.Web.Profile.ProfileManager.FindProfilesByUserName C# (CSharp) Method

FindProfilesByUserName() public static method

public static FindProfilesByUserName ( ProfileAuthenticationOption authenticationOption, string usernameToMatch ) : System.Web.Profile.ProfileInfoCollection
authenticationOption ProfileAuthenticationOption
usernameToMatch string
return System.Web.Profile.ProfileInfoCollection
		public static ProfileInfoCollection FindProfilesByUserName (ProfileAuthenticationOption authenticationOption, string usernameToMatch)
		{
			int totalRecords = 0;
			return Provider.FindProfilesByUserName (authenticationOption, usernameToMatch, 0, int.MaxValue, out totalRecords);
		}

Same methods

ProfileManager::FindProfilesByUserName ( ProfileAuthenticationOption authenticationOption, string usernameToMatch, int pageIndex, int pageSize, int &totalRecords ) : System.Web.Profile.ProfileInfoCollection