XmlReader.ReadElementContentAsDecimal Metoda
Definicja
Przeciążenia
ReadElementContentAsDecimal() |
Odczytuje bieżący element i zwraca zawartość jako obiekt Decimal.Reads the current element and returns the contents as a Decimal object. |
ReadElementContentAsDecimal(String, String) |
Sprawdza, czy określona nazwa lokalna i identyfikator URI przestrzeni nazw są zgodne z bieżącym elementem, a następnie odczytuje bieżący element i zwraca zawartość jako obiekt Decimal.Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a Decimal object. |
ReadElementContentAsDecimal()
Odczytuje bieżący element i zwraca zawartość jako obiekt Decimal.Reads the current element and returns the contents as a Decimal object.
public:
virtual System::Decimal ReadElementContentAsDecimal();
public virtual decimal ReadElementContentAsDecimal ();
abstract member ReadElementContentAsDecimal : unit -> decimal
override this.ReadElementContentAsDecimal : unit -> decimal
Public Overridable Function ReadElementContentAsDecimal () As Decimal
Zwraca
Wyjątki
XmlReader nie jest umieszczona w elemencie.The XmlReader is not positioned on an element.
lub-or-
Metoda XmlReader została wywołana przed ukończeniem poprzedniej operacji asynchronicznej.An XmlReader method was called before a previous asynchronous operation finished. W takim przypadku InvalidOperationException jest generowany z komunikatem "asynchroniczna operacja jest już w toku".In this case, InvalidOperationException is thrown with the message "An asynchronous operation is already in progress."
Bieżący element zawiera elementy podrzędne.The current element contains child elements.
lub-or- Nie można przekonwertować zawartości elementu na Decimal.The element content cannot be converted to a Decimal.
Metoda jest wywoływana z argumentami null
.The method is called with null
arguments.
Uwagi
Ta metoda odczytuje tag początkowy, zawartość elementu i przenosi czytelnika poza tag elementu końcowego.This method reads the start tag, the contents of the element, and moves the reader past the end element tag. Rozszerza jednostki i ignoruje przetwarzanie instrukcji i komentarzy.It expands entities and ignores processing instructions and comments. Element może zawierać tylko zawartość prostą.The element can only contain simple content. Oznacza to, że nie może mieć elementów podrzędnych.That is, it cannot have child elements.
Czytnik próbuje skonwertować zawartość elementu na obiekt Decimal zgodnie z regułami określonymi przez plik W3C XML schematu część 2: zalecenie typów danych.The reader attempts to convert the element content to an Decimal object according to the rules defined by the W3C XML Schema Part 2: Datatypes recommendation.
Aby uzyskać więcej informacji, zobacz sekcję uwagi na stronie odniesienia XmlReader.For more information, see the Remarks section of the XmlReader reference page.
ReadElementContentAsDecimal(String, String)
Sprawdza, czy określona nazwa lokalna i identyfikator URI przestrzeni nazw są zgodne z bieżącym elementem, a następnie odczytuje bieżący element i zwraca zawartość jako obiekt Decimal.Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a Decimal object.
public:
virtual System::Decimal ReadElementContentAsDecimal(System::String ^ localName, System::String ^ namespaceURI);
public virtual decimal ReadElementContentAsDecimal (string localName, string namespaceURI);
abstract member ReadElementContentAsDecimal : string * string -> decimal
override this.ReadElementContentAsDecimal : string * string -> decimal
Public Overridable Function ReadElementContentAsDecimal (localName As String, namespaceURI As String) As Decimal
Parametry
- localName
- String
Nazwa lokalna elementu.The local name of the element.
- namespaceURI
- String
Identyfikator URI przestrzeni nazw elementu.The namespace URI of the element.
Zwraca
Wyjątki
XmlReader nie jest umieszczona w elemencie.The XmlReader is not positioned on an element.
lub-or-
Metoda XmlReader została wywołana przed ukończeniem poprzedniej operacji asynchronicznej.An XmlReader method was called before a previous asynchronous operation finished. W takim przypadku InvalidOperationException jest generowany z komunikatem "asynchroniczna operacja jest już w toku".In this case, InvalidOperationException is thrown with the message "An asynchronous operation is already in progress."
Bieżący element zawiera elementy podrzędne.The current element contains child elements.
lub-or- Nie można przekonwertować zawartości elementu na Decimal.The element content cannot be converted to a Decimal.
Metoda jest wywoływana z argumentami null
.The method is called with null
arguments.
Określona nazwa lokalna i identyfikator URI przestrzeni nazw nie są zgodne z bieżącym odczytywanym elementem.The specified local name and namespace URI do not match that of the current element being read.
Uwagi
Ta metoda odczytuje tag początkowy, zawartość elementu i przenosi czytelnika poza tag elementu końcowego.This method reads the start tag, the contents of the element, and moves the reader past the end element tag. Rozszerza jednostki i ignoruje przetwarzanie instrukcji i komentarzy.It expands entities and ignores processing instructions and comments. Element może zawierać tylko zawartość prostą.The element can only contain simple content. Oznacza to, że nie może mieć elementów podrzędnych.That is, it cannot have child elements.
Czytnik próbuje skonwertować zawartość elementu na obiekt Decimal zgodnie z regułami określonymi przez plik W3C XML schematu część 2: zalecenie typów danych.The reader attempts to convert the element content to an Decimal object according to the rules defined by the W3C XML Schema Part 2: Datatypes recommendation.
Aby uzyskać więcej informacji, zobacz sekcję uwagi na stronie odniesienia XmlReader.For more information, see the Remarks section of the XmlReader reference page.