C# 클래스 GitSharp.Core.RevWalk.Filter.SubStringRevFilter

Abstract filter that searches text using only substring search.
상속: RevFilter
파일 보기 프로젝트 열기: jagregory/GitSharp 1 사용 예제들

공개 메소드들

메소드 설명
Clone ( ) : RevFilter
ToString ( ) : string
include ( RevWalk walker, RevCommit commit ) : bool
safe ( string pattern ) : bool

Can this string be safely handled by a substring filter?

보호된 메소드들

메소드 설명
Text ( RevCommit cmit ) : string

Obtain the raw text to match against.

비공개 메소드들

메소드 설명
SubStringRevFilter ( string patternText ) : System

Construct a new matching filter.

메소드 상세

Clone() 공개 메소드

public Clone ( ) : RevFilter
리턴 RevFilter

Text() 보호된 추상적인 메소드

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

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

include() 공개 메소드

public include ( RevWalk walker, RevCommit commit ) : bool
walker RevWalk
commit RevCommit
리턴 bool

safe() 공개 정적인 메소드

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. ///
리턴 bool