FeatureAttributeCollection.Item

FeatureAttributeCollection indexer (1 of 2)

Obtiene o establece elFeatureAttribute en el índice especificado.

public FeatureAttribute this[int index] { get; set; }
ParámetroDescripción
indexEl índice de base cero del atributo que se va a obtener o establecer.

Valor_devuelto

El atributo en el índice especificado.

Excepciones

excepcióncondición
ArgumentOutOfRangeExceptionEl índice está fuera de rango.
InvalidOperationExceptionIntento de modificar una colección bloqueada.

Ver también


FeatureAttributeCollection indexer (2 of 2)

Obtiene o establece elFeatureAttribute con un nombre especificado.

public FeatureAttribute this[string name] { get; }
ParámetroDescripción
nameNombre de los atributos.

Valor_devuelto

El atributo con el nombre especificado, onull si no se encuentra.

Excepciones

excepcióncondición
ArgumentNullExceptionEl nombre del atributo esnull.

Ver también