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
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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