Partilhar via


ConfigurationElement.GetAttributeValue(String) Método

Definição

Retorna o valor do atributo especificado.

public:
 System::Object ^ GetAttributeValue(System::String ^ attributeName);
public object GetAttributeValue (string attributeName);
member this.GetAttributeValue : string -> obj
Public Function GetAttributeValue (attributeName As String) As Object

Parâmetros

attributeName
String

O nome do atributo solicitado.

Retornos

Um objeto que representa o atributo solicitado, se ele existir; caso contrário, null.

Exceções

O parâmetro attributeName é null ou está vazio.

Exemplos

O exemplo a seguir obtém o valor do atributo.

// Use any of the following lines to retrieve the attribute value.
// attributeBag[ConfigurationDemoGlobals.AttributeName] = "name";
attributeBag[ConfigurationDemoGlobals.AttributeName] =
    moduleproviderelement.GetAttributeValue("name");
// attributeBag[ConfigurationDemoGlobals.AttributeName] =
//    moduleproviderelement["name"];

Comentários

Se o nome do atributo solicitado não estiver no valor da RawAttributes propriedade , esse método retornará null.

Você também pode obter o valor do atributo usando a Item[] propriedade ou a Microsoft.Web.Administration.ConfigurationAttribute.Value propriedade . GetAttributeValue é o método preferencial.

Aplica-se a

Confira também