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

DeleteProfile() public abstract method

Deletes a Page from the data store specified by the provider.
public abstract DeleteProfile ( AuthorProfile profile ) : void
profile AuthorProfile /// The profile to delete. ///
return void
        public abstract void DeleteProfile(AuthorProfile profile);

Usage Example

Example #1
0
 /// <summary>
 /// Deletes the specified Page from the current provider.
 /// </summary>
 public static void DeleteProfile(AuthorProfile profile)
 {
     LoadProviders();
     _provider.DeleteProfile(profile);
 }