C# 클래스 GitSharp.Core.PersonIdent

파일 보기 프로젝트 열기: jagregory/GitSharp 1 사용 예제들

공개 메소드들

메소드 설명
Equals ( object o ) : bool
GetHashCode ( ) : int
PersonIdent ( PersonIdent pi ) : System

Copy a PersonIdent.

PersonIdent ( PersonIdent pi, System.DateTime when ) : System

Copy a PersonIdent, but alter the clone's time stamp

PersonIdent ( PersonIdent pi, System.DateTime when, int tz ) : System

Copy a PersonIdent, but alter the clone's time stamp

PersonIdent ( PersonIdent pi, long when, int tz ) : System

Copy a PersonIdent, but alter the clone's time stamp

PersonIdent ( Repository repo ) : System

Creates new PersonIdent from config info in repository, with current time. This new PersonIdent gets the info from the default committer as available from the configuration.

PersonIdent ( string str ) : System

Construct a PersonIdent from a string with full name, email, time time zone string. The input string must be valid.

PersonIdent ( string name, string emailAddress ) : System

Construct a new PersonIdent with current time.

PersonIdent ( string name, string emailAddress, System.DateTime when, int tz ) : System

Construct a PersonIdent from simple data

PersonIdent ( string name, string emailAddress, long when, int tz ) : System

Construct a PersonIdent

ToExternalString ( ) : string

Format for Git storage.

ToString ( ) : string

비공개 메소드들

메소드 설명
appendTimezone ( StringBuilder r ) : void

메소드 상세

Equals() 공개 메소드

public Equals ( object o ) : bool
o object
리턴 bool

GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 int

PersonIdent() 공개 메소드

Copy a PersonIdent.
public PersonIdent ( PersonIdent pi ) : System
pi PersonIdent Original .
리턴 System

PersonIdent() 공개 메소드

Copy a PersonIdent, but alter the clone's time stamp
public PersonIdent ( PersonIdent pi, System.DateTime when ) : System
pi PersonIdent Original .
when System.DateTime Local date time in milliseconds (since Epoch).
리턴 System

PersonIdent() 공개 메소드

Copy a PersonIdent, but alter the clone's time stamp
public PersonIdent ( PersonIdent pi, System.DateTime when, int tz ) : System
pi PersonIdent Original .
when System.DateTime Local date time in milliseconds (since Epoch).
tz int Time zone offset in minutes.
리턴 System

PersonIdent() 공개 메소드

Copy a PersonIdent, but alter the clone's time stamp
public PersonIdent ( PersonIdent pi, long when, int tz ) : System
pi PersonIdent Original .
when long Local date time in milliseconds (since Epoch).
tz int Time zone offset in minutes.
리턴 System

PersonIdent() 공개 메소드

Creates new PersonIdent from config info in repository, with current time. This new PersonIdent gets the info from the default committer as available from the configuration.
public PersonIdent ( Repository repo ) : System
repo Repository
리턴 System

PersonIdent() 공개 메소드

Construct a PersonIdent from a string with full name, email, time time zone string. The input string must be valid.
public PersonIdent ( string str ) : System
str string A Git internal format author/committer string.
리턴 System

PersonIdent() 공개 메소드

Construct a new PersonIdent with current time.
public PersonIdent ( string name, string emailAddress ) : System
name string
emailAddress string
리턴 System

PersonIdent() 공개 메소드

Construct a PersonIdent from simple data
public PersonIdent ( string name, string emailAddress, System.DateTime when, int tz ) : System
name string
emailAddress string
when System.DateTime Local date time in milliseconds (since Epoch).
tz int Time zone offset in minutes.
리턴 System

PersonIdent() 공개 메소드

Construct a PersonIdent
public PersonIdent ( string name, string emailAddress, long when, int tz ) : System
name string
emailAddress string
when long Local date time in milliseconds (since Epoch).
tz int Time zone offset in minutes.
리턴 System

ToExternalString() 공개 메소드

Format for Git storage.
public ToExternalString ( ) : string
리턴 string

ToString() 공개 메소드

public ToString ( ) : string
리턴 string