BlogEngine.Core.Providers.BlogService.SetupBlogFromExistingBlog C# (CSharp) Method

SetupBlogFromExistingBlog() public static method

Sets up the required storage files/tables for a new Blog instance, from an existing blog instance.
public static SetupBlogFromExistingBlog ( Blog existingBlog, Blog newBlog ) : bool
existingBlog Blog The existing blog instance to base the new blog instance off of.
newBlog Blog The new blog instance.
return bool
        public static bool SetupBlogFromExistingBlog(Blog existingBlog, Blog newBlog)
        {
            return Provider.SetupBlogFromExistingBlog(existingBlog, newBlog);
        }