Skip to content
Docs Try Aspire

AtsDiagnostic Methods

Class Methods 3 members
Represents a diagnostic message from the ATS capability scanner.
Creates an error diagnostic.
public sealed class AtsDiagnostic
{
public static AtsDiagnostic Error(
string message,
string? location = null)
{
// ...
}
}
message string
location string? optional
Creates an info diagnostic (verbose output shown with --debug).
public sealed class AtsDiagnostic
{
public static AtsDiagnostic Info(
string message,
string? location = null)
{
// ...
}
}
message string
location string? optional
Creates a warning diagnostic.
public sealed class AtsDiagnostic
{
public static AtsDiagnostic Warning(
string message,
string? location = null)
{
// ...
}
}
message string
location string? optional