ConfigurationElementCollection.BaseGet Metoda

Definice

Získá v ConfigurationElement zadaném umístění indexu.

Přetížení

BaseGet(Int32)

Získá konfigurační prvek v zadaném umístění indexu.

BaseGet(Object)

Vrátí element konfigurace se zadaným klíčem.

BaseGet(Int32)

Zdroj:
ConfigurationElementCollection.cs
Zdroj:
ConfigurationElementCollection.cs
Zdroj:
ConfigurationElementCollection.cs

Získá konfigurační prvek v zadaném umístění indexu.

protected:
 System::Configuration::ConfigurationElement ^ BaseGet(int index);
protected public:
 System::Configuration::ConfigurationElement ^ BaseGet(int index);
protected System.Configuration.ConfigurationElement BaseGet (int index);
protected internal System.Configuration.ConfigurationElement BaseGet (int index);
member this.BaseGet : int -> System.Configuration.ConfigurationElement
Protected Function BaseGet (index As Integer) As ConfigurationElement
Protected Friend Function BaseGet (index As Integer) As ConfigurationElement

Parametry

index
Int32

Umístění indexu, který ConfigurationElement se má vrátit.

Návraty

Hodnota ConfigurationElement v zadaném indexu.

Výjimky

index je menší než 0.

-nebo-

V zadaném indexparametru není žádná ConfigurationElement hodnota .

Příklady

Následující příklad kódu ukazuje, jak volat metodu BaseGet .

public UrlConfigElement this[int index]
{
    get
    {
        return (UrlConfigElement)BaseGet(index);
    }
    set
    {
        if (BaseGet(index) != null)
        {
            BaseRemoveAt(index);
        }
        BaseAdd(index, value);
    }
}
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 BaseGet(index) IsNot Nothing Then
            BaseRemoveAt(index)
        End If
        BaseAdd(value)
    End Set
End Property

Platí pro

BaseGet(Object)

Zdroj:
ConfigurationElementCollection.cs
Zdroj:
ConfigurationElementCollection.cs
Zdroj:
ConfigurationElementCollection.cs

Vrátí element konfigurace se zadaným klíčem.

protected:
 System::Configuration::ConfigurationElement ^ BaseGet(System::Object ^ key);
protected public:
 System::Configuration::ConfigurationElement ^ BaseGet(System::Object ^ key);
protected System.Configuration.ConfigurationElement BaseGet (object key);
protected internal System.Configuration.ConfigurationElement BaseGet (object key);
member this.BaseGet : obj -> System.Configuration.ConfigurationElement
Protected Function BaseGet (key As Object) As ConfigurationElement
Protected Friend Function BaseGet (key As Object) As ConfigurationElement

Parametry

key
Object

Klíč prvku, který se má vrátit.

Návraty

Se ConfigurationElement zadaným klíčem, jinak . null

Příklady

Následující příklad kódu ukazuje, jak volat metodu BaseGet .

new public UrlConfigElement this[string Name]
{
    get
    {
        return (UrlConfigElement)BaseGet(Name);
    }
}
Default Public Shadows ReadOnly Property Item(ByVal Name As String) As UrlConfigElement
    Get
        Return CType(BaseGet(Name), UrlConfigElement)
    End Get
End Property

Poznámky

Metoda BaseGet vrátí null , pokud v kolekci neexistuje žádný ConfigurationElement objekt se zadaným klíčem.

Platí pro