C# Class DBTek.BugGuardian.Creator

Inheritance: ICreator
Datei anzeigen Open project: n3wt0n/BugGuardian

Public Methods

Method 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

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Private Methods

Method Description
AddWorkItemAsync ( WorkItemType workItemType, Exception ex, string message, IEnumerable tags ) : Task

Method Details

AddBug() public method

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
return DBTek.BugGuardian.Entities.BugGuardianResponse

AddBugAsync() public method

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
return Task

AddTask() public method

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
return DBTek.BugGuardian.Entities.BugGuardianResponse

AddTaskAsync() public method

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
return Task

Creator() public method

public Creator ( ) : DBTek.BugGuardian.Entities
return DBTek.BugGuardian.Entities

Dispose() public method

public Dispose ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void