SelectProfile() public abstract method

Retrieves a Page from the provider based on the specified id.
public abstract SelectProfile ( string id ) : AuthorProfile
id string The AuthorProfile id.
return AuthorProfile
Example #1
0
 /// <summary>
 /// Returns a Page based on the specified id.
 /// </summary>
 public static AuthorProfile SelectProfile(string id)
 {
     LoadProviders();
     return(_provider.SelectProfile(id));
 }