XmlArrayItemAttribute.NestingLevel Propriedade
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Obtém ou define o nível numa hierarquia de elementos XML que o XmlArrayItemAttribute afeta.
public:
property int NestingLevel { int get(); void set(int value); };
public int NestingLevel { get; set; }
member this.NestingLevel : int with get, set
Public Property NestingLevel As Integer
Valor de Propriedade
O índice baseado em zero de um conjunto de índices num array de arrays.
Exemplos
O exemplo seguinte aplica três XmlArrayItemAttribute atributos a um array de arrays. Para especificar a qual dos arrays cada atributo se aplica, a NestingLevel propriedade é definida para o índice dos arrays.
using System;
using System.Xml;
using System.Xml.Serialization;
using System.IO;
public class Forest{
/* Set the NestingLevel for each array. The first
attribute (NestingLevel = 0) is optional. */
[XmlArrayItem(ElementName = "tree", NestingLevel = 0)]
[XmlArrayItem(ElementName = "branch", NestingLevel = 1)]
[XmlArrayItem(ElementName = "leaf",NestingLevel = 2)]
public string[][][] TreeArray;
}
public class Test{
public static void Main(){
Test t = new Test();
t.SerializeObject("Tree.xml");
}
private void SerializeObject(string filename){
XmlSerializer serializer =
new XmlSerializer(typeof(Forest));
Forest f = new Forest();
string[][][] myTreeArray = new string[2] [][];
string[][]myBranchArray1= new string[1][];
myBranchArray1[0]=new string[1]{"One"};
myTreeArray[0]=myBranchArray1;
string[][]myBranchArray2= new string[2][];
myBranchArray2[0]=new string[2]{"One","Two"};
myBranchArray2[1]=new string[3]{"One","Two","Three"};
myTreeArray[1]=myBranchArray2;
f.TreeArray=myTreeArray;
serializer.Serialize(Console.Out, f);
}
}
Observações
Um documento XML pode conter hierarquias de elementos XML. Para representar tal hierarquia, é usado um array de arrays. Num tal array, cada índice representa um nível na hierarquia. Portanto, a NestingLevel propriedade só é usada ao aplicar an XmlArrayItemAttribute a um campo que devolve um array de arrays.
Ao aplicar o atributo, especifique que nível de hierarquia o atributo afeta, definindo o NestingLevel. O primeiro índice tem sempre o valor de 0; portanto, é opcional definir o seu NestingLevel --an XmlArrayItemAttribute sem NestingLevel valor aplica-se ao primeiro índice do array. Apenas os objetos subsequentes XmlArrayItemAttribute requerem NestingLevel valores especificados (como 1, 2, 3, e assim sucessivamente).