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