BlogEngine.Core.Providers.BlogProvider.SelectProfile C# (CSharp) Method

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
        public abstract AuthorProfile SelectProfile(string id);

Usage Example

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