ElementInformation.Errors Property

 

Gets the errors for the associated element and subelements

Namespace:   System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)

Public ReadOnly Property Errors As ICollection

Property Value

Type: System.Collections.ICollection

The collection containing the errors for the associated element and subelements

The following example shows how to use the Errors collection.

Public Shared Sub GetElementErrors() 

    ' Get the current configuration file.
    Dim config _
    As System.Configuration.Configuration = _
    ConfigurationManager.OpenExeConfiguration( _
    ConfigurationUserLevel.None)

    ' Get the section.
    Dim section As UrlsSection = _
    CType(config.GetSection("MyUrls"), UrlsSection)

    ' Get the element.
    Dim url As UrlConfigElement = _
    section.Simple

    'Get the errors.
    Dim errors As ICollection = url.ElementInformation.Errors
    Console.WriteLine("Number of errors: {0)", _
    errors.Count.ToString())


End Sub 'GetElementErrors 

.NET Framework
Available since 2.0
Return to top
Show: