Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Defines detailed, localized error messages for IIS Express failure conditions.
Syntax
public class ErrorInformation
{
/// <summary>
/// A localized error message that describes the error.
/// </summary>
public string Message
{
get;
}
/// <summary>
/// One or more localized strings that describe possible root causes for the failure.
/// </summary>
public IEnumerable<string> Causes
{
get;
}
/// <summary>
/// One or more localized strings that describe how to address the failure.
/// </summary>
public IEnumerable<string> Recommendations
{
get;
}
/// <summary>
/// One or more hyperlinks that reference additional readings.
/// </summary>
public IEnumerable<string> HyperLinks
{
get;
}
}