C# Class GitSharp.Core.RevWalk.Filter.SubStringRevFilter

Abstract filter that searches text using only substring search.
Inheritance: RevFilter
Afficher le fichier Open project: jagregory/GitSharp Class Usage Examples

Méthodes publiques

Méthode Description
Clone ( ) : RevFilter
ToString ( ) : string
include ( RevWalk walker, RevCommit commit ) : bool
safe ( string pattern ) : bool

Can this string be safely handled by a substring filter?

Méthodes protégées

Méthode Description
Text ( RevCommit cmit ) : string

Obtain the raw text to match against.

Private Methods

Méthode Description
SubStringRevFilter ( string patternText ) : System

Construct a new matching filter.

Method Details

Clone() public méthode

public Clone ( ) : RevFilter
Résultat RevFilter

Text() protected abstract méthode

Obtain the raw text to match against.
protected abstract Text ( RevCommit cmit ) : string
cmit RevCommit Current commit being evaluated.
Résultat string

ToString() public méthode

public ToString ( ) : string
Résultat string

include() public méthode

public include ( RevWalk walker, RevCommit commit ) : bool
walker RevWalk
commit RevCommit
Résultat bool

safe() public static méthode

Can this string be safely handled by a substring filter?
public static safe ( string pattern ) : bool
pattern string /// the pattern text proposed by the user. ///
Résultat bool