Rediger

ErrorInformation (IISExpress)

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;  
        }  
    }  
  

See Also

IIS Express API Reference