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

InsertProfile() public abstract method

Inserts a new Page into the data store specified by the provider.
public abstract InsertProfile ( AuthorProfile profile ) : void
profile AuthorProfile /// The profile to insert. ///
return void
        public abstract void InsertProfile(AuthorProfile profile);

Usage Example

Example #1
0
 /// <summary>
 /// Persists a new Page in the current provider.
 /// </summary>
 public static void InsertProfile(AuthorProfile profile)
 {
     LoadProviders();
     _provider.InsertProfile(profile);
 }