Interface IRuntimeInsightsService
Represents a service for retrieving runtime insights.
Namespace: Coree.NETStandard.Services.RuntimeInsights
Assembly: Coree.NETStandard.dll
Syntax
public interface IRuntimeInsightsService
Methods
| <<<<<<< HEAD <<<<<<< .merge_file_a15320 Edit this page View Source ======= Edit this page View Source >>>>>>> .merge_file_a16300 ======= Edit this page View Source >>>>>>> releaseIsDebugBuild()
Checks if the current build is a debug build.
Declaration
bool? IsDebugBuild()
Returns
Type | Description |
---|---|
bool? | True if the current build is a debug build; otherwise, false. Returns null if the determination cannot be made. |
IsDebugBuildAsync(CancellationToken)
Checks if the current build is a debug build.
Declaration
Task<bool?> IsDebugBuildAsync(CancellationToken cancellationToken = default)
Parameters
Type | Name | Description |
---|---|---|
CancellationToken | cancellationToken | The cancellation token to cancel the operation. |
Returns
Type | Description |
---|---|
Task<bool?> | A task representing the asynchronous operation. The task result contains true if the current build is a debug build; otherwise, false. If the operation is canceled or an exception occurs, returns null. |