Skip to content
DocsTry Aspire
DocsTry

AtsDiagnostic Methods

ClassMethods3 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)
{
// ...
}
}
messagestring
locationstring?optional
Creates an info diagnostic (verbose output shown with --debug).
public sealed class AtsDiagnostic
{
public static AtsDiagnostic Info(
string message,
string? location = null)
{
// ...
}
}
messagestring
locationstring?optional
Creates a warning diagnostic.
public sealed class AtsDiagnostic
{
public static AtsDiagnostic Warning(
string message,
string? location = null)
{
// ...
}
}
messagestring
locationstring?optional