ConfigurationErrorsException.GetLineNumber Method

Definition

Gets the line number within the configuration file that was being processed when this configuration exception was thrown.

Overloads

GetLineNumber(XmlNode)

Gets the line number within the configuration file that the internal XmlNode object represented when this configuration exception was thrown.

GetLineNumber(XmlReader)

Gets the line number within the configuration file that the internal XmlReader object was processing when this configuration exception was thrown.

GetLineNumber(XmlNode)

Source:
ConfigurationErrorsException.cs
Source:
ConfigurationErrorsException.cs
Source:
ConfigurationErrorsException.cs

Gets the line number within the configuration file that the internal XmlNode object represented when this configuration exception was thrown.

public:
 static int GetLineNumber(System::Xml::XmlNode ^ node);
public static int GetLineNumber (System.Xml.XmlNode node);
static member GetLineNumber : System.Xml.XmlNode -> int
Public Shared Function GetLineNumber (node As XmlNode) As Integer

Parameters

node
XmlNode

The XmlNode object that caused this ConfigurationErrorsException exception to be thrown.

Returns

The line number within the configuration file that contains the XmlNode object being parsed when this configuration exception was thrown.

Remarks

The GetFilename method returns the name of the configuration file that contains the XmlNode object being parsed when the exception occurred.

Applies to

GetLineNumber(XmlReader)

Source:
ConfigurationErrorsException.cs
Source:
ConfigurationErrorsException.cs
Source:
ConfigurationErrorsException.cs

Gets the line number within the configuration file that the internal XmlReader object was processing when this configuration exception was thrown.

public:
 static int GetLineNumber(System::Xml::XmlReader ^ reader);
public static int GetLineNumber (System.Xml.XmlReader reader);
static member GetLineNumber : System.Xml.XmlReader -> int
Public Shared Function GetLineNumber (reader As XmlReader) As Integer

Parameters

reader
XmlReader

The XmlReader object that caused this ConfigurationErrorsException exception to be thrown.

Returns

The line number within the configuration file that the XmlReader object was accessing when the exception occurred.

Remarks

The GetLineNumber method returns the name of the configuration file that the XmlReader object was accessing when the exception occurred.

Applies to