BaseGet Method (Int32)
.NET Framework Class Library
ConfigurationElementCollection..::.BaseGet Method (Int32)

Gets the configuration element at the specified index location.

Namespace:  System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)
Visual Basic (Declaration)
Protected Friend Function BaseGet ( _
    index As Integer _
) As ConfigurationElement
Visual Basic (Usage)
Dim index As Integer
Dim returnValue As ConfigurationElement

returnValue = Me.BaseGet(index)
C#
protected internal ConfigurationElement BaseGet(
    int index
)
Visual C++
protected public:
ConfigurationElement^ BaseGet(
    int index
)
JScript
protected internal function BaseGet(
    index : int
) : ConfigurationElement

Parameters

index
Type: System..::.Int32
The index location of the ConfigurationElement to return.

Return Value

Type: System.Configuration..::.ConfigurationElement
The ConfigurationElement at the specified index.
ExceptionCondition
ConfigurationErrorsException

index is less than 0.

- or -

There is no ConfigurationElement at the specified index.

The following code example shows how to call the BaseGet method.

Visual Basic
Default Public Shadows Property Item( _
ByVal index As Integer) As UrlConfigElement
    Get
        Return CType(BaseGet(index), UrlConfigElement)
    End Get

    Set(ByVal value As UrlConfigElement)
        If Not (BaseGet(index) Is Nothing) Then
            BaseRemoveAt(index)
        End If
        BaseAdd(index, value)
    End Set
End Property
C#
public UrlConfigElement this[int index]
{
    get
    {
        return (UrlConfigElement)BaseGet(index);
    }
    set
    {
        if (BaseGet(index) != null)
        {
            BaseRemoveAt(index);
        }
        BaseAdd(index, value);
    }
}

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
Page view tracker