Class RuntimeInsightsService
Manages and provides access to runtime and system insights.
Inheritance
Inherited Members
Namespace: Coree.NETStandard.Services.RuntimeInsightsManagement
Assembly: Coree.NETStandard.dll
Syntax
public class RuntimeInsightsService : ServiceFactoryEx<RuntimeInsightsService>, IDisposable, IRuntimeInsightsService
Constructors
| Edit this page View SourceRuntimeInsightsService(ILogger<RuntimeInsightsService>?)
Initializes a new instance of the RuntimeInsightsService class.
Declaration
public RuntimeInsightsService(ILogger<RuntimeInsightsService>? logger = null)
Parameters
Type | Name | Description |
---|---|---|
ILogger<RuntimeInsightsService> | logger | Optional logger instance for logging purposes. |
Remarks
The logger provided here can be used with the field within the class. Be mindful that the logger may be null in scenarios where it's not explicitly provided.
Properties
| Edit this page View SourceCallingAssemblyName
Gets the name of the calling assembly.
Declaration
public string? CallingAssemblyName { get; }
Property Value
Type | Description |
---|---|
string |
CurrentDirectory
Gets the current working directory.
Declaration
public string? CurrentDirectory { get; }
Property Value
Type | Description |
---|---|
string |
CurrentProcessMainModuleFilename
Gets the main module filename of the current process.
Declaration
public string? CurrentProcessMainModuleFilename { get; }
Property Value
Type | Description |
---|---|
string |
CurrentProcessMainModuleName
Gets the main module name of the current process.
Declaration
public string? CurrentProcessMainModuleName { get; }
Property Value
Type | Description |
---|---|
string |
EntryAssemblyName
Gets the name of the entry assembly.
Declaration
public string? EntryAssemblyName { get; }
Property Value
Type | Description |
---|---|
string |
EnvironmentCommandLine
Gets the command line used to start the environment.
Declaration
public string? EnvironmentCommandLine { get; }
Property Value
Type | Description |
---|---|
string |
ExecutingAssemblyName
Gets the name of the executing assembly.
Declaration
public string? ExecutingAssemblyName { get; }
Property Value
Type | Description |
---|---|
string |
OSArchitecture
Gets the OS architecture.
Declaration
public string? OSArchitecture { get; }
Property Value
Type | Description |
---|---|
string |
ProcessArchitecture
Gets the process architecture.
Declaration
public string? ProcessArchitecture { get; }
Property Value
Type | Description |
---|---|
string |
Username
Gets the username of the process owner.
Declaration
public string? Username { get; }
Property Value
Type | Description |
---|---|
string |
Methods
| Edit this page View SourceIsDebugBuild()
Checks if the current build is a debug build.
Declaration
public bool? IsDebugBuild()
Returns
Type | Description |
---|---|
bool? | True if the current build is a debug build; otherwise, false. If the operation is canceled or an exception occurs, returns null. |
IsDebugBuildAsync(CancellationToken)
Checks if the current build is a debug build.
Declaration
public Task<bool?> IsDebugBuildAsync(CancellationToken cancellationToken = default)
Parameters
Type | Name | Description |
---|---|---|
CancellationToken | cancellationToken | The cancellation token to cancel the operation. |
Returns
Type | Description |
---|---|
Task<bool?> | True if the current build is a debug build; otherwise, false. If the operation is canceled or an exception occurs, returns null. |
IsDevelopmentBuild()
Checks if the current build is a debug build.
Declaration
public static bool IsDevelopmentBuild()
Returns
Type | Description |
---|---|
bool | True if the current build is a debug build; otherwise, false. |