XAttribute.SetValue(Object) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém o valor desse atributo.
public:
void SetValue(System::Object ^ value);
public void SetValue (object value);
member this.SetValue : obj -> unit
Public Sub SetValue (value As Object)
Parâmetros
- value
- Object
O valor a ser atribuído a esse atributo.
Exceções
O parâmetro value
é null
.
O value
é um XObject.
Exemplos
O exemplo a seguir cria um elemento com vários atributos. Em seguida, ele altera o conteúdo de um dos atributos.
XElement root = new XElement("Root",
new XAttribute("Att1", "content1"),
new XAttribute("Att2", "content2"),
new XAttribute("Att3", "content3")
);
XAttribute att = root.Attribute("Att2");
att.SetValue("new content");
Console.WriteLine(root);
Dim root As XElement = <Root Att1="content1" Att2="content2" Att3="content3"/>
Dim att As XAttribute = root.Attribute("Att2")
att.SetValue("new content")
Console.WriteLine(root)
Esse exemplo gera a saída a seguir:
<Root Att1="content1" Att2="new content" Att3="content3" />
Comentários
O valor é convertido em sua representação de cadeia de caracteres e é atribuído à propriedade Value.
É inválido passar uma instância de uma classe derivada de XObject, como XElement ou XAttribute.
Esse método gerará os ChangedChanging eventos e .