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

UpdateProfile() public abstract method

Updates an existing Page in the data store specified by the provider.
public abstract UpdateProfile ( AuthorProfile profile ) : void
profile AuthorProfile /// The profile to update. ///
return void
        public abstract void UpdateProfile(AuthorProfile profile);

Usage Example

Example #1
0
 /// <summary>
 /// Updates an exsiting Page.
 /// </summary>
 public static void UpdateProfile(AuthorProfile profile)
 {
     LoadProviders();
     _provider.UpdateProfile(profile);
 }