C# Class Xaye.Fred.Category

Represents a category of data.
Inheritance: Item
Exibir arquivo Open project: cuda/Xaye.Fred Class Usage Examples

Private Properties

Property Type Description
Category System

Public Methods

Method Description
GetChildern ( ) : IEnumerable

Enumeration of the category's children categories.

GetChildernAsync ( ) : Task>

Enumeration of the category's children categories.

GetParent ( ) : Category

This category's parent category. If this category is the root category, then the Parent == this.

GetParentAsync ( ) : Task

This category's parent category. If this category is the root category, then the Parent == this.

GetRelated ( ) : IEnumerable

Enumeration of all related categories.

GetRelatedAsync ( ) : Task>

Enumeration of all related categories.

GetSeries ( ) : IEnumerable

Enumeration of all series in the category.

GetSeriesAsync ( ) : Task>

Enumeration of all series in the category.

Private Methods

Method Description
Category ( Fred fred ) : System

Method Details

GetChildern() public method

Enumeration of the category's children categories.
public GetChildern ( ) : IEnumerable
return IEnumerable

GetChildernAsync() public method

Enumeration of the category's children categories.
public GetChildernAsync ( ) : Task>
return Task>

GetParent() public method

This category's parent category. If this category is the root category, then the Parent == this.
public GetParent ( ) : Category
return Category

GetParentAsync() public method

This category's parent category. If this category is the root category, then the Parent == this.
public GetParentAsync ( ) : Task
return Task

GetRelated() public method

Enumeration of all related categories.
public GetRelated ( ) : IEnumerable
return IEnumerable

GetRelatedAsync() public method

Enumeration of all related categories.
public GetRelatedAsync ( ) : Task>
return Task>

GetSeries() public method

Enumeration of all series in the category.
public GetSeries ( ) : IEnumerable
return IEnumerable

GetSeriesAsync() public method

Enumeration of all series in the category.
public GetSeriesAsync ( ) : Task>
return Task>