SelectProfile() 공개 추상적인 메소드

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