DelegatingXmlDictionaryReader.Item[] Propiedad

Definición

Sobrecargas

Nombre Description
Item[Int32]

Obtiene el valor del atributo con el índice especificado.

Item[String]

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

Item[String, String]

Obtiene el valor del atributo con el nombre local y el URI del espacio de nombres especificados (tal y como devuelve la LocalName propiedad y la NamespaceURI propiedad 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 y como devuelve la Name propiedad 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 , null se devuelve.

Se aplica a

Item[String, String]

Obtiene el valor del atributo con el nombre local y el URI del espacio de nombres especificados (tal y como devuelve la LocalName propiedad y la NamespaceURI propiedad 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 del espacio de nombres del atributo.

Valor de propiedad

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

Se aplica a