C# Класс Subtext.BlogML.BlogMLProvider

Provider for accessing data to implement BlogMl.
Наследование: System.Configuration.Provider.ProviderBase, IBlogMLProvider
Показать файл Открыть проект

Открытые методы

Метод Описание
CreateBlogPost ( BlogMLBlog blog, BlogMLPost post, string content, string>.IDictionary categoryIdMap ) : string

Creates a blog post and returns the id.

CreateCategories ( BlogMLBlog blog ) : string>.IDictionary

Creates categories from the blog ml.

CreatePostComment ( BlogMLComment bmlComment, string newPostId ) : void

Creates a comment in the system.

CreatePostTrackback ( BlogMLTrackback trackback, string newPostId ) : void

Creates a trackback for the post.

GetAllCategories ( string blogId ) : IList

Returns every blog category in the blog.

GetAttachmentDirectoryPath ( BlogMLAttachment attachment ) : string

The physical path to the attachment directory.

The attachment is passed in to give the blog engine the opportunity to use attachment specific directories (ex. based on mime type) should it choose.

GetAttachmentDirectoryUrl ( BlogMLAttachment attachment ) : string

The url to the attachment directory

The attachment is passed in to give the blog engine the opportunity to use attachment specific directories (ex. based on mime type) should it choose.

GetBlog ( string blogId ) : BlogMLBlog

Returns the information about the specified blog

GetBlogMlContext ( ) : IBlogMLContext

Returns the blog id from whichever context the provider happens to be running in.

GetBlogPosts ( string blogId, int pageIndex, int pageSize ) : IPagedCollection

Returns a page of fully hydrated blog posts. The blog posts allow the user of this method to navigate blog post categories, comments, etc...

ImportComplete ( ) : void
Initialize ( string name, System configValue ) : void

Initializes the provider with values from its configuration section in web.config.

The connection string can be initialized via the "ConnectionStringName" property or via the "ConnectionString" attribute.

If the "ConnectionStringName" is specified, the connection string is looked up in the ConnectionStrings section of web.config. If "ConnectionString" is specified, it overrides "ConnectionStringName" and is used instead.

Instance ( ) : IBlogMLProvider

Returns the default instance of this provider.

LogError ( string message, Exception e ) : void

Lets the provider decide how to log errors.

PreImport ( ) : void

Method called before an import begins. Allows the provider to initialize any state in the current blog.

SetBlogMlExtendedProperties ( BlogMLBlog extendedProperties ) : void

Sets the extended properties for the blog.

Описание методов

CreateBlogPost() публичный абстрактный Метод

Creates a blog post and returns the id.
public abstract CreateBlogPost ( BlogMLBlog blog, BlogMLPost post, string content, string>.IDictionary categoryIdMap ) : string
blog BlogMLBlog
post BlogML.Xml.BlogMLPost
content string The rewritten content of the post.
categoryIdMap string>.IDictionary A dictionary used to map the blogml category id to the internal category id.
Результат string

CreateCategories() публичный абстрактный Метод

Creates categories from the blog ml.
public abstract CreateCategories ( BlogMLBlog blog ) : string>.IDictionary
blog BlogMLBlog
Результат string>.IDictionary

CreatePostComment() публичный абстрактный Метод

Creates a comment in the system.
public abstract CreatePostComment ( BlogMLComment bmlComment, string newPostId ) : void
bmlComment BlogML.Xml.BlogMLComment
newPostId string
Результат void

CreatePostTrackback() публичный абстрактный Метод

Creates a trackback for the post.
public abstract CreatePostTrackback ( BlogMLTrackback trackback, string newPostId ) : void
trackback BlogML.Xml.BlogMLTrackback
newPostId string
Результат void

GetAllCategories() публичный абстрактный Метод

Returns every blog category in the blog.
public abstract GetAllCategories ( string blogId ) : IList
blogId string
Результат IList

GetAttachmentDirectoryPath() публичный абстрактный Метод

The physical path to the attachment directory.
The attachment is passed in to give the blog engine the opportunity to use attachment specific directories (ex. based on mime type) should it choose.
public abstract GetAttachmentDirectoryPath ( BlogMLAttachment attachment ) : string
attachment BlogML.Xml.BlogMLAttachment
Результат string

GetAttachmentDirectoryUrl() публичный абстрактный Метод

The url to the attachment directory
The attachment is passed in to give the blog engine the opportunity to use attachment specific directories (ex. based on mime type) should it choose.
public abstract GetAttachmentDirectoryUrl ( BlogMLAttachment attachment ) : string
attachment BlogML.Xml.BlogMLAttachment
Результат string

GetBlog() публичный абстрактный Метод

Returns the information about the specified blog
public abstract GetBlog ( string blogId ) : BlogMLBlog
blogId string
Результат BlogMLBlog

GetBlogMlContext() публичный абстрактный Метод

Returns the blog id from whichever context the provider happens to be running in.
public abstract GetBlogMlContext ( ) : IBlogMLContext
Результат IBlogMLContext

GetBlogPosts() публичный абстрактный Метод

Returns a page of fully hydrated blog posts. The blog posts allow the user of this method to navigate blog post categories, comments, etc...
public abstract GetBlogPosts ( string blogId, int pageIndex, int pageSize ) : IPagedCollection
blogId string
pageIndex int
pageSize int
Результат IPagedCollection

ImportComplete() публичный абстрактный Метод

public abstract ImportComplete ( ) : void
Результат void

Initialize() публичный Метод

Initializes the provider with values from its configuration section in web.config.

The connection string can be initialized via the "ConnectionStringName" property or via the "ConnectionString" attribute.

If the "ConnectionStringName" is specified, the connection string is looked up in the ConnectionStrings section of web.config. If "ConnectionString" is specified, it overrides "ConnectionStringName" and is used instead.

public Initialize ( string name, System configValue ) : void
name string The name.
configValue System The config value.
Результат void

Instance() публичный статический Метод

Returns the default instance of this provider.
public static Instance ( ) : IBlogMLProvider
Результат IBlogMLProvider

LogError() публичный абстрактный Метод

Lets the provider decide how to log errors.
public abstract LogError ( string message, Exception e ) : void
message string
e System.Exception
Результат void

PreImport() публичный абстрактный Метод

Method called before an import begins. Allows the provider to initialize any state in the current blog.
public abstract PreImport ( ) : void
Результат void

SetBlogMlExtendedProperties() публичный абстрактный Метод

Sets the extended properties for the blog.
public abstract SetBlogMlExtendedProperties ( BlogMLBlog extendedProperties ) : void
extendedProperties BlogMLBlog
Результат void