ConfigurationElementCollection.BaseGet Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene el objeto ConfigurationElement en la ubicación de índice especificada.
Sobrecargas
BaseGet(Int32) |
Obtiene el elemento de configuración en la ubicación de índice especificada. |
BaseGet(Object) |
Devuelve el elemento de configuración con la clave especificada. |
BaseGet(Int32)
Obtiene el elemento de configuración en la ubicación de índice especificada.
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
Parámetros
- index
- Int32
Ubicación de índice del objeto ConfigurationElement que se va a devolver.
Devoluciones
Objeto ConfigurationElement en el índice especificado.
Excepciones
index
es menor que 0
.
o bien
No hay ningún objeto ConfigurationElement en el índice index
especificado.
Ejemplos
En el ejemplo de código siguiente se muestra cómo llamar al BaseGet método .
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
Se aplica a
BaseGet(Object)
Devuelve el elemento de configuración con la clave especificada.
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
Parámetros
- key
- Object
Clave del elemento que se va a devolver.
Devoluciones
Objeto ConfigurationElement con la clave especificada; en caso contrario, null
.
Ejemplos
En el ejemplo de código siguiente se muestra cómo llamar al BaseGet método .
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
Comentarios
El BaseGet método devuelve null
si no hay ningún ConfigurationElement objeto con la clave especificada en la colección.