DelegatingXmlDictionaryReader.Item[] Propiedad

Definición

Sobrecargas

Item[Int32]

Obtiene el valor del atributo con el índice especificado.

Item[String]

Obtiene el valor del atributo con el nombre especificado (tal como lo devuelve la propiedad Name del lector ajustado).

Item[String, String]

Obtiene el valor del atributo con el URI especificado del nombre local y el espacio de nombres (tal como lo devuelve la propiedad LocalName y la propiedad NamespaceURI del lector ajustado.

Item[Int32]

Obtiene el valor del atributo con el índice especificado.

public:
 virtual property System::String ^ default[int] { System::String ^ get(int i); };
public override string this[int i] { get; }
member this.Item(int) : string
Default Public Overrides ReadOnly Property Item(i As Integer) As String

Parámetros

i
Int32

Índice del atributo.

Valor de propiedad

Valor del atributo en el índice especificado.

Se aplica a

Item[String]

Obtiene el valor del atributo con el nombre especificado (tal como lo devuelve la propiedad Name del lector ajustado).

public:
 virtual property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ name); };
public override string this[string name] { get; }
member this.Item(string) : string
Default Public Overrides ReadOnly Property Item(name As String) As String

Parámetros

name
String

Nombre completo del atributo.

Valor de propiedad

Valor del atributo especificado. Si no se encuentra el atributo, se devuelve null.

Se aplica a

Item[String, String]

Obtiene el valor del atributo con el URI especificado del nombre local y el espacio de nombres (tal como lo devuelve la propiedad LocalName y la propiedad NamespaceURI del lector ajustado.

public:
 virtual property System::String ^ default[System::String ^, System::String ^] { System::String ^ get(System::String ^ name, System::String ^ namespaceURI); };
public override string this[string name, string namespaceURI] { get; }
member this.Item(string * string) : string
Default Public Overrides ReadOnly Property Item(name As String, namespaceURI As String) As String

Parámetros

name
String

Nombre local del atributo.

namespaceURI
String

URI de espacio de nombres del atributo.

Valor de propiedad

Valor del atributo especificado. Si no se encuentra el atributo, se devuelve null.

Se aplica a