C# 클래스 Hexa.Core.Web.Services.SeoSiteMapBuilderService

상속: ISeoSiteMapBuilderService
파일 보기 프로젝트 열기: cmendible/Hexa.Core

공개 메소드들

메소드 설명
AddUrl ( SeoUrlInfo url ) : void

Adds a url as child of the root url.

AddUrl ( SeoUrlInfo url, SeoUrlInfo parent ) : void

Adds a url as a child of another url.

AddUrl ( SeoUrlInfo url, SeoUrlInfo parent, int preferredDisplayOrder ) : void

Adds a url as a child of another url, and sets the order with which to display the url.

AddUrl ( SeoUrlInfo url, int preferredDisplayOrder ) : void

Adds a url as a child of the root url and sets the order with which the url should be displayed.

GetChildren ( string urlKey ) : ReadOnlyCollection

Gets the children of the specified url.

SeoSiteMapBuilderService ( ) : System

Initialize a new instance of SeoSiteMapBuilderService.

비공개 메소드들

메소드 설명
AddChildurls ( XmlWriter writer, SeoUrlInfo parent, ReadOnlyCollection children ) : void
AddurlWithOrder ( string parentKey, SeoUrlInfo url, int preferredDisplayOrder ) : void
FormatISODate ( System.DateTime date ) : string
SafeAddurl ( SeoUrlInfo url ) : void
SeoXml ( ) : string
WriteSiteMapurlEntry ( XmlWriter writer, SeoUrlInfo url ) : void

메소드 상세

AddUrl() 공개 메소드

Adds a url as child of the root url.
public AddUrl ( SeoUrlInfo url ) : void
url SeoUrlInfo The url to add.
리턴 void

AddUrl() 공개 메소드

Adds a url as a child of another url.
public AddUrl ( SeoUrlInfo url, SeoUrlInfo parent ) : void
url SeoUrlInfo The url to add.
parent SeoUrlInfo The url under which to add the new url.
리턴 void

AddUrl() 공개 메소드

Adds a url as a child of another url, and sets the order with which to display the url.
public AddUrl ( SeoUrlInfo url, SeoUrlInfo parent, int preferredDisplayOrder ) : void
url SeoUrlInfo The url to add.
parent SeoUrlInfo The url under which to add the new url.
preferredDisplayOrder int The url display order.
리턴 void

AddUrl() 공개 메소드

Adds a url as a child of the root url and sets the order with which the url should be displayed.
public AddUrl ( SeoUrlInfo url, int preferredDisplayOrder ) : void
url SeoUrlInfo The url to add.
preferredDisplayOrder int The url display order.
리턴 void

GetChildren() 공개 메소드

Gets the children of the specified url.
public GetChildren ( string urlKey ) : ReadOnlyCollection
urlKey string The key of the parent url.
리턴 ReadOnlyCollection

SeoSiteMapBuilderService() 공개 메소드

Initialize a new instance of SeoSiteMapBuilderService.
public SeoSiteMapBuilderService ( ) : System
리턴 System