Method | Description | |
---|---|---|
DeleteBlog ( Blog blog ) : void |
Deletes a Blog from the data store specified by the provider.
|
|
DeleteBlogRollItem ( BlogRollItem blogRollItem ) : void |
Deletes a BlogRoll from the data store specified by the provider.
|
|
DeleteBlogStorageContainer ( Blog blog ) : bool |
Deletes a Blog's storage container from the data store specified by the provider.
|
|
DeleteCategory ( Category category ) : void |
Deletes a Category from the data store specified by the provider.
|
|
DeletePackage ( string packageId ) : void |
Should delete package and remove all package files
|
|
DeletePage ( Page page ) : void |
Deletes a Page from the data store specified by the provider.
|
|
DeletePost ( Post post ) : void |
Deletes a Post from the data store specified by the provider.
|
|
DeleteProfile ( AuthorProfile profile ) : void |
Deletes a Page from the data store specified by the provider.
|
|
DeleteQuickNote ( System.Guid noteId ) : void |
Delete quick note
|
|
FillBlogRoll ( ) : List |
Retrieves all BlogRolls from the provider and returns them in a list.
|
|
FillBlogs ( ) : List |
Retrieves all Blogs from the provider and returns them in a list.
|
|
FillCategories ( ) : List |
Retrieves all Categories from the provider and returns them in a List.
|
|
FillPackageFiles ( string packageId ) : List |
Gets list of files for installed package
|
|
FillPackages ( ) : List |
Gets all installed from gallery packages
|
|
FillPages ( ) : List |
Retrieves all Pages from the provider and returns them in a List.
|
|
FillPosts ( ) : List |
Retrieves all Posts from the provider and returns them in a List.
|
|
FillProfiles ( ) : List |
Retrieves all Pages from the provider and returns them in a List.
|
|
FillQuickNotes ( string userId ) : List |
Fill quick notes
|
|
FillQuickSettings ( string userId ) : List |
Fill quick settings
|
|
FillReferrers ( ) : List |
Deletes a Referrer from the data store specified by the provider.
|
|
FillRights ( ) : IEnumerable |
Returns a dictionary representing rights and the roles that allow them.
|
|
InsertBlog ( Blog blog ) : void |
Inserts a new Blog into the data store specified by the provider.
|
|
InsertBlogRollItem ( BlogRollItem blogRollItem ) : void |
Inserts a new BlogRoll into the data store specified by the provider.
|
|
InsertCategory ( Category category ) : void |
Inserts a new Category into the data store specified by the provider.
|
|
InsertPage ( Page page ) : void |
Inserts a new Page into the data store specified by the provider.
|
|
InsertPost ( Post post ) : void |
Inserts a new Post into the data store specified by the provider.
|
|
InsertProfile ( AuthorProfile profile ) : void |
Inserts a new Page into the data store specified by the provider.
|
|
InsertReferrer ( Referrer referrer ) : void |
Inserts a new Referrer into the data store specified by the provider.
|
|
LoadFromDataStore ( ExtensionType extensionType, string extensionId ) : object |
Loads settings from data store
|
|
LoadPingServices ( ) : |
Loads the ping services.
|
|
LoadSettings ( ) : |
Loads the settings from the provider.
|
|
LoadStopWords ( ) : |
Loads the stop words used in the search feature.
|
|
RemoveFromDataStore ( ExtensionType extensionType, string extensionId ) : void |
Removes settings from data store
|
|
SavePackage ( InstalledPackage package ) : void |
Save installed package id and version
|
|
SavePackageFiles ( List |
Log of all files for installed package
|
|
SavePingServices ( |
Saves the ping services.
|
|
SaveQuickNote ( QuickNote note ) : void |
Save quick note
|
|
SaveQuickSetting ( QuickSetting setting ) : void |
Save quick setting
|
|
SaveRights ( IEnumerable |
Saves all of the Rights and the roles that coorespond with them.
|
|
SaveSettings ( |
Saves the settings to the provider.
|
|
SaveToDataStore ( ExtensionType extensionType, string extensionId, object settings ) : void |
Saves settings to data store
|
|
SelectBlog ( System.Guid id ) : Blog |
Retrieves a Blog from the provider based on the specified id.
|
|
SelectBlogRollItem ( System.Guid id ) : BlogRollItem |
Retrieves a BlogRoll from the provider based on the specified id.
|
|
SelectCategory ( System.Guid id ) : Category |
Retrieves a Category from the provider based on the specified id.
|
|
SelectPage ( System.Guid id ) : Page |
Retrieves a Page from the provider based on the specified id.
|
|
SelectPost ( System.Guid id ) : Post |
Retrieves a Post from the provider based on the specified id.
|
|
SelectProfile ( string id ) : AuthorProfile |
Retrieves a Page from the provider based on the specified id.
|
|
SelectReferrer ( System.Guid id ) : Referrer |
Retrieves a Referrer from the provider based on the specified id.
|
|
SetupBlogFromExistingBlog ( Blog existingBlog, Blog newBlog ) : bool |
Sets up the required storage files/tables for a new Blog instance, from an existing blog instance.
|
|
UpdateBlog ( Blog blog ) : void |
Updates an existing Blog in the data store specified by the provider.
|
|
UpdateBlogRollItem ( BlogRollItem blogRollItem ) : void |
Updates an existing BlogRollItem in the data store specified by the provider.
|
|
UpdateCategory ( Category category ) : void |
Updates an existing Category in the data store specified by the provider.
|
|
UpdatePage ( Page page ) : void |
Updates an existing Page in the data store specified by the provider.
|
|
UpdatePost ( Post post ) : void |
Updates an existing Post in the data store specified by the provider.
|
|
UpdateProfile ( AuthorProfile profile ) : void |
Updates an existing Page in the data store specified by the provider.
|
|
UpdateReferrer ( Referrer referrer ) : void |
Updates an existing Referrer in the data store specified by the provider.
|
public abstract DeleteBlog ( Blog blog ) : void | ||
blog | Blog | /// The blog to delete. /// |
return | void |
public abstract DeleteBlogRollItem ( BlogRollItem blogRollItem ) : void | ||
blogRollItem | BlogRollItem | /// The blog Roll Item to delete. /// |
return | void |
public abstract DeleteBlogStorageContainer ( Blog blog ) : bool | ||
blog | Blog | /// The blog to delete the storage container of. /// |
return | bool |
public abstract DeleteCategory ( Category category ) : void | ||
category | Category | /// The category to delete. /// |
return | void |
public abstract DeletePackage ( string packageId ) : void | ||
packageId | string | Package ID |
return | void |
public abstract DeletePage ( Page page ) : void | ||
page | Page | /// The page to delete. /// |
return | void |
public abstract DeletePost ( Post post ) : void | ||
post | Post | /// The post to delete. /// |
return | void |
public abstract DeleteProfile ( AuthorProfile profile ) : void | ||
profile | AuthorProfile | /// The profile to delete. /// |
return | void |
public abstract DeleteQuickNote ( System.Guid noteId ) : void | ||
noteId | System.Guid | Note ID |
return | void |
public abstract FillPackageFiles ( string packageId ) : List |
||
packageId | string | Package ID |
return | List |
public abstract FillQuickNotes ( string userId ) : List |
||
userId | string | User ID |
return | List |
public abstract FillQuickSettings ( string userId ) : List |
||
userId | string | User ID |
return | List |
public abstract FillRights ( ) : IEnumerable |
||
return | IEnumerable |
public abstract InsertBlog ( Blog blog ) : void | ||
blog | Blog | /// The blog. /// |
return | void |
public abstract InsertBlogRollItem ( BlogRollItem blogRollItem ) : void | ||
blogRollItem | BlogRollItem | /// The blog Roll Item. /// |
return | void |
public abstract InsertCategory ( Category category ) : void | ||
category | Category | /// The category. /// |
return | void |
public abstract InsertPage ( Page page ) : void | ||
page | Page | /// The page to insert. /// |
return | void |
public abstract InsertPost ( Post post ) : void | ||
post | Post | /// The post to insert. /// |
return | void |
public abstract InsertProfile ( AuthorProfile profile ) : void | ||
profile | AuthorProfile | /// The profile to insert. /// |
return | void |
public abstract InsertReferrer ( Referrer referrer ) : void | ||
referrer | Referrer | /// The referrer to insert. /// |
return | void |
public abstract LoadFromDataStore ( ExtensionType extensionType, string extensionId ) : object | ||
extensionType | ExtensionType | /// Extension Type /// |
extensionId | string | /// Extensio Id /// |
return | object |
public abstract LoadPingServices ( ) : |
||
return |
public abstract LoadSettings ( ) : |
||
return |
public abstract LoadStopWords ( ) : |
||
return |
public abstract RemoveFromDataStore ( ExtensionType extensionType, string extensionId ) : void | ||
extensionType | ExtensionType | /// Extension Type /// |
extensionId | string | /// Extension Id /// |
return | void |
public abstract SavePackage ( InstalledPackage package ) : void | ||
package | InstalledPackage | Intalled package |
return | void |
public abstract SavePackageFiles ( List |
||
packageFiles | List |
List of intalled package files |
return | void |
public abstract SavePingServices ( |
||
services | /// The services. /// | |
return | void |
public abstract SaveQuickNote ( QuickNote note ) : void | ||
note | QuickNote | Quick note |
return | void |
public abstract SaveQuickSetting ( QuickSetting setting ) : void | ||
setting | QuickSetting | Quick setting |
return | void |
public abstract SaveRights ( IEnumerable |
||
rights | IEnumerable |
|
return | void |
public abstract SaveSettings ( |
||
settings | /// The settings. /// | |
return | void |
public abstract SaveToDataStore ( ExtensionType extensionType, string extensionId, object settings ) : void | ||
extensionType | ExtensionType | /// Extension Type /// |
extensionId | string | /// Extension Id /// |
settings | object | /// Settings object /// |
return | void |
public abstract SelectBlog ( System.Guid id ) : Blog | ||
id | System.Guid | The Blog Id. |
return | Blog |
public abstract SelectBlogRollItem ( System.Guid id ) : BlogRollItem | ||
id | System.Guid | The Blog Roll Item Id. |
return | BlogRollItem |
public abstract SelectCategory ( System.Guid id ) : Category | ||
id | System.Guid | The Category id. |
return | Category |
public abstract SelectPage ( System.Guid id ) : Page | ||
id | System.Guid | The Page id. |
return | Page |
public abstract SelectPost ( System.Guid id ) : Post | ||
id | System.Guid | The Post id. |
return | Post |
public abstract SelectProfile ( string id ) : AuthorProfile | ||
id | string | The AuthorProfile id. |
return | AuthorProfile |
public abstract SelectReferrer ( System.Guid id ) : Referrer | ||
id | System.Guid | The Referrer Id. |
return | Referrer |
public abstract 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 abstract UpdateBlog ( Blog blog ) : void | ||
blog | Blog | /// The blog to update. /// |
return | void |
public abstract UpdateBlogRollItem ( BlogRollItem blogRollItem ) : void | ||
blogRollItem | BlogRollItem | /// The blogroll item to update. /// |
return | void |
public abstract UpdateCategory ( Category category ) : void | ||
category | Category | /// The category to update. /// |
return | void |
public abstract UpdatePage ( Page page ) : void | ||
page | Page | /// The page to update. /// |
return | void |
public abstract UpdatePost ( Post post ) : void | ||
post | Post | /// The post to update. /// |
return | void |
public abstract UpdateProfile ( AuthorProfile profile ) : void | ||
profile | AuthorProfile | /// The profile to update. /// |
return | void |
public abstract UpdateReferrer ( Referrer referrer ) : void | ||
referrer | Referrer | /// The referrer to update. /// |
return | void |