C# 클래스 GitSharp.Core.RevWalk.FooterLine

Single line at the end of a message, such as a "Signed-off-by: someone". These footer lines tend to be used to represent additional information about a commit, like the path it followed through reviewers before finally being accepted into the project's main repository as an immutable commit.
파일 보기 프로젝트 열기: jagregory/GitSharp

공개 메소드들

메소드 설명
FooterLine ( byte b, Encoding e, int ks, int ke, int vs, int ve ) : System.Text
Matches ( FooterKey key ) : bool

ToString ( ) : string
getEmailAddress ( ) : string

Extract the email address (if present) from the footer. If there is an email address looking string inside of angle brackets (e.g. "<a@b>"), the return value is the part extracted from inside the brackets. If no brackets are found, then Value is returned if the value contains an '@' sign. Otherwise, null.

메소드 상세

FooterLine() 공개 메소드

public FooterLine ( byte b, Encoding e, int ks, int ke, int vs, int ve ) : System.Text
b byte
e System.Text.Encoding
ks int
ke int
vs int
ve int
리턴 System.Text

Matches() 공개 메소드

public Matches ( FooterKey key ) : bool
key FooterKey /// Key to test this line's key name against. ///
리턴 bool

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

getEmailAddress() 공개 메소드

Extract the email address (if present) from the footer. If there is an email address looking string inside of angle brackets (e.g. "<a@b>"), the return value is the part extracted from inside the brackets. If no brackets are found, then Value is returned if the value contains an '@' sign. Otherwise, null.
public getEmailAddress ( ) : string
리턴 string