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
Mostrar archivo Open project: AArnott/dasblog Class Usage Examples

Private Properties

Property Type Description
ICollection void

Public Methods

Method 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

Method Description
ICollection ( Array array, int index ) : void

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

Method Details

GetEnumerator() public method

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

Init() public method

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.
return void

MatchedTagCollection() public method

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