C# Class newtelligence.DasBlog.Web.Core.MatchedTagCollection

Converts a match collection to a tag collection. Takes care of illegal tags, non-closed, and non-balanced end-tags.
Inheritance: ICollection, IEnumerable
Afficher le fichier Open project: AArnott/dasblog Class Usage Examples

Private Properties

Свойство Type Description
ICollection void

Méthodes publiques

Méthode Description
GetEnumerator ( ) : IEnumerator

Returns an enumerator that can iterate through the collection of MatchedTags.

Init ( MatchCollection matches ) : void

Adds the tag matches in an input string.

MatchedTagCollection ( ValidTagCollection allowedTags ) : System

Initializes a new instance of the FilteredTagCollection class.

Private Methods

Méthode Description
ICollection ( Array array, int index ) : void

Copies the Matchedtags to the supplied array at the specified index.

Method Details

GetEnumerator() public méthode

Returns an enumerator that can iterate through the collection of MatchedTags.
public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

Init() public méthode

Adds the tag matches in an input string.
public Init ( MatchCollection matches ) : void
matches System.Text.RegularExpressions.MatchCollection The tag matches from an input string.
Résultat void

MatchedTagCollection() public méthode

Initializes a new instance of the FilteredTagCollection class.
public MatchedTagCollection ( ValidTagCollection allowedTags ) : System
allowedTags ValidTagCollection The allowed tags.
Résultat System