C# 클래스 TestBaseClass, VisualStudio

This base class will get its methods called by the most-derived classes. The calls are injected by the EntryExitMethodDecorator Fody addin, so don't be surprised if you don't see any calls in the code.
상속: IEntryExitDecorator
파일 보기 프로젝트 열기: github/VisualStudio 1 사용 예제들

공개 메소드들

메소드 설명
OnEntry ( ) : void
OnExit ( ) : void

보호된 메소드들

메소드 설명
CreateOctokitOrganization ( string login ) : Organization
CreateOctokitUser ( string login = "login", string url = "https://url" ) : User
CreatePullRequest ( User user, int id, ItemState, state, string title, DateTimeOffset createdAt, DateTimeOffset updatedAt, int commentCount, int reviewCommentCount ) : Octokit.PullRequest
CreateRepository ( string owner, string name, string domain = "github.com", long id = 1, Repository parent = null ) : Repository
CreateUserAndScopes ( string login, string scopes = null ) : UserAndScopes

메소드 상세

CreateOctokitOrganization() 보호된 정적인 메소드

protected static CreateOctokitOrganization ( string login ) : Organization
login string
리턴 Organization

CreateOctokitUser() 보호된 정적인 메소드

protected static CreateOctokitUser ( string login = "login", string url = "https://url" ) : User
login string
url string
리턴 User

CreatePullRequest() 보호된 정적인 메소드

protected static CreatePullRequest ( User user, int id, ItemState, state, string title, DateTimeOffset createdAt, DateTimeOffset updatedAt, int commentCount, int reviewCommentCount ) : Octokit.PullRequest
user User
id int
state ItemState,
title string
createdAt DateTimeOffset
updatedAt DateTimeOffset
commentCount int
reviewCommentCount int
리턴 Octokit.PullRequest

CreateRepository() 보호된 정적인 메소드

protected static CreateRepository ( string owner, string name, string domain = "github.com", long id = 1, Repository parent = null ) : Repository
owner string
name string
domain string
id long
parent Repository
리턴 Repository

CreateUserAndScopes() 보호된 정적인 메소드

protected static CreateUserAndScopes ( string login, string scopes = null ) : UserAndScopes
login string
scopes string
리턴 GitHub.Models.UserAndScopes

OnEntry() 공개 메소드

public OnEntry ( ) : void
리턴 void

OnExit() 공개 메소드

public OnExit ( ) : void
리턴 void