Interface IBugCreationHistoryServiceClient
An interface to represent a client for service calls for bug creation history.
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure
Assembly: Aruba.Infrastructure.dll
Syntax
public interface IBugCreationHistoryServiceClient
Methods
View SourceGetBugCreationHistoryForCurrentUserAsync()
Gets the bug creation history for all bugs created by the current user.
Declaration
Task<IEnumerable<BugCreationHistory>> GetBugCreationHistoryForCurrentUserAsync()
Returns
Type | Description |
---|---|
Task<IEnumerable<BugCreationHistory>> | Returns a list of BugCreationHistory. |
GetBugCreationHistoryUsingIDAsync(string)
Gets the bug creation history for a single item using the bug ID.
Declaration
Task<BugCreationHistory?> GetBugCreationHistoryUsingIDAsync(string bugID)
Parameters
Type | Name | Description |
---|---|---|
string | bugID | The ID of the bug. |
Returns
Type | Description |
---|---|
Task<BugCreationHistory> | Returns a BugCreationHistory, or null if nothing was found. |