XmlException.LineNumber Propriedade
Definição
Obtém o número de linha que indica onde ocorreu o erro.Gets the line number indicating where the error occurred. Os números da linha iniciam em 1.Line numbers start at 1.
public:
property int LineNumber { int get(); };
public int LineNumber { get; }
member this.LineNumber : int
Public ReadOnly Property LineNumber As Integer
Valor da propriedade
O número de linha que indica onde ocorreu o erro.The line number indicating where the error occurred.
Comentários
A tentativa de carregar a cadeia de caracteres "<<foo>\r\nbar</foo>" como XML gera uma XmlException com a seguinte mensagem:Attempting to load the string "<<foo>\r\nbar</foo>" as XML throws an XmlException with the following message:
System.Xml.XmlException: 'Name cannot begin with the '<' character, hexadecimal value 0x3C. Line 1, position 2.'
Mostrando que o número de linha é baseado em 1 (o erro é encontrado na primeira linha).Showing that line number is 1-based (the error is found in the first line).