ElementInformation.LineNumber プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
構成ファイル内の、関連付けられている ConfigurationElement オブジェクトが定義されている位置の行番号を取得します。
public:
property int LineNumber { int get(); };
public int LineNumber { get; }
member this.LineNumber : int
Public ReadOnly Property LineNumber As Integer
プロパティ値
構成ファイル内の、関連付けられている ConfigurationElement オブジェクトが定義されている位置の行番号。
例
LineNumber プロパティを使用する方法を次の例に示します。
static public void GetElementLineNumber()
{
// Get the current configuration file.
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None);
// Get the section.
UrlsSection section =
(UrlsSection)config.GetSection("MyUrls");
// Get the collection element.
UrlsCollection urls = section.Urls;
int ln =
urls.ElementInformation.LineNumber;
Console.WriteLine("Urls element line number: {0}",
ln.ToString());
}
Public Shared Sub GetElementLineNumber()
' Get the current configuration file.
Dim config _
As System.Configuration.Configuration = _
ConfigurationManager.OpenExeConfiguration( _
ConfigurationUserLevel.None)
' Get the section.
Dim section As UrlsSection = _
CType(config.GetSection("MyUrls"), UrlsSection)
' Get the collection element.
Dim urls As UrlsCollection = _
section.Urls
Dim ln As Integer = _
urls.ElementInformation.LineNumber
Console.WriteLine("Urls element line number: {0}", _
ln.ToString())
End Sub
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET