SectionInformation.SectionName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
関連付けられている構成セクションの名前を取得します。
public:
property System::String ^ SectionName { System::String ^ get(); };
public string SectionName { get; }
member this.SectionName : string
Public ReadOnly Property SectionName As String
プロパティ値
関連付けられている ConfigurationSection オブジェクトの名前。
例
次の例は、 オブジェクトの値を取得する SectionName 方法を ConfigurationSection 示しています。
static public void GetSectionName()
{
SectionInformation sInfo =
GetSectionInformation();
string sectionName = sInfo.SectionName;
Console.WriteLine("Section type: {0}", sectionName);
}
Public Shared Sub GetSectionName()
Dim sInfo As SectionInformation = _
GetSectionInformation()
Dim sectionName As String = _
sInfo.SectionName
Console.WriteLine("Section type: {0}", _
sectionName)
End Sub
注釈
プロパティ値は SectionName 、構成継承階層を含むセクション名全体です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET