Show / Hide Table of Contents

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 Source

GetBugCreationHistoryForCurrentUserAsync()

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.

View Source

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.

  • View Source
In this article
Back to top Generated by DocFX