C# Class DBTek.BugGuardian.Creator

Inheritance: ICreator
Afficher le fichier Open project: n3wt0n/BugGuardian

Méthodes publiques

Méthode Description
AddBug ( Exception ex, string message = null, IEnumerable tags = null ) : BugGuardianResponse

Add a Bug, with the info about the given Exception. You can optionally indicate a custom error message and a list of tags

AddBugAsync ( Exception ex, string message = null, IEnumerable tags = null ) : Task

Add a Bug in async, with the info about the given Exception. You can optionally indicate a custom error message and a list of tags

AddTask ( Exception ex, string message = null, IEnumerable tags = null ) : BugGuardianResponse

Add a Task, with the info about the given Exception. You can optionally indicate a custom error message and a list of tags

AddTaskAsync ( Exception ex, string message = null, IEnumerable tags = null ) : Task

Add a Task in async, with the info about the given Exception. You can optionally indicate a custom error message and a list of tags

Creator ( ) : DBTek.BugGuardian.Entities
Dispose ( ) : void

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Private Methods

Méthode Description
AddWorkItemAsync ( WorkItemType workItemType, Exception ex, string message, IEnumerable tags ) : Task

Method Details

AddBug() public méthode

Add a Bug, with the info about the given Exception. You can optionally indicate a custom error message and a list of tags
public AddBug ( Exception ex, string message = null, IEnumerable tags = null ) : BugGuardianResponse
ex System.Exception The exception to report
message string Optional message to be added to the WorkItem
tags IEnumerable Optional tags (list separated by comma) to be added to the WorkItem
Résultat DBTek.BugGuardian.Entities.BugGuardianResponse

AddBugAsync() public méthode

Add a Bug in async, with the info about the given Exception. You can optionally indicate a custom error message and a list of tags
public AddBugAsync ( Exception ex, string message = null, IEnumerable tags = null ) : Task
ex System.Exception The exception to report
message string Optional message to be added to the WorkItem
tags IEnumerable Optional tags (list separated by comma) to be added to the WorkItem
Résultat Task

AddTask() public méthode

Add a Task, with the info about the given Exception. You can optionally indicate a custom error message and a list of tags
public AddTask ( Exception ex, string message = null, IEnumerable tags = null ) : BugGuardianResponse
ex System.Exception The exception to report
message string Optional message to be added to the WorkItem
tags IEnumerable Optional tags (list separated by comma) to be added to the WorkItem
Résultat DBTek.BugGuardian.Entities.BugGuardianResponse

AddTaskAsync() public méthode

Add a Task in async, with the info about the given Exception. You can optionally indicate a custom error message and a list of tags
public AddTaskAsync ( Exception ex, string message = null, IEnumerable tags = null ) : Task
ex System.Exception The exception to report
message string Optional message to be added to the WorkItem
tags IEnumerable Optional tags (list separated by comma) to be added to the WorkItem
Résultat Task

Creator() public méthode

public Creator ( ) : DBTek.BugGuardian.Entities
Résultat DBTek.BugGuardian.Entities

Dispose() public méthode

public Dispose ( ) : void
Résultat void

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void