C# 클래스 DBTek.BugGuardian.Factories.ConfigurationFactory

파일 보기 프로젝트 열기: n3wt0n/BugGuardian

Private Properties

프로퍼티 타입 설명
CleanUrl string

공개 메소드들

메소드 설명
SetConfiguration ( string url, string username, string password, string projectName, bool avoidMultipleReport = true ) : void

Allows to set the condifuration from code. If used, overrides the configuration present in the config file

SetConfiguration ( string url, string username, string password, string collectionName, string projectName, bool avoidMultipleReport = true ) : void

Allows to set the condifuration from code. If used, overrides the configuration present in the config file

비공개 메소드들

메소드 설명
CleanUrl ( string url ) : string

메소드 상세

SetConfiguration() 공개 정적인 메소드

Allows to set the condifuration from code. If used, overrides the configuration present in the config file
public static SetConfiguration ( string url, string username, string password, string projectName, bool avoidMultipleReport = true ) : void
url string The url of VSTS or the TFS Server to target
username string The username of the account used to connect to the service
password string The password of the account used to connect to the service
projectName string The name of the Team Project where the bugs will be open
avoidMultipleReport bool If true, if the application throws the same exception more the once it will be reported only once. If false, every time will be created a new Bug to VSTS/TFS.
리턴 void

SetConfiguration() 공개 정적인 메소드

Allows to set the condifuration from code. If used, overrides the configuration present in the config file
public static SetConfiguration ( string url, string username, string password, string collectionName, string projectName, bool avoidMultipleReport = true ) : void
url string The url of VSTS or the TFS Server to target
username string The username of the account used to connect to the service
password string The password of the account used to connect to the service
collectionName string The name of the Team Collection that contains the Team Project
projectName string The name of the Team Project where the bugs will be open
avoidMultipleReport bool If true, if the application throws the same exception more the once it will be reported only once. If false, every time will be created a new Bug to VSTS/TFS.
리턴 void