DeletePost() 공개 추상적인 메소드

Deletes a Post from the data store specified by the provider.
public abstract DeletePost ( Post post ) : void
post Post /// The post to delete. ///
리턴 void
예제 #1
0
 /// <summary>
 /// Deletes the specified Post from the current provider.
 /// </summary>
 public static void DeletePost(Post post)
 {
     LoadProviders();
     _provider.DeletePost(post);
 }