ConfigurationSection.SectionInformation Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Özelleştirilebilir olmayan bilgileri ve nesnenin işlevselliğini ConfigurationSection içeren bir SectionInformation nesnesi alır.
public:
property System::Configuration::SectionInformation ^ SectionInformation { System::Configuration::SectionInformation ^ get(); };
public System.Configuration.SectionInformation SectionInformation { get; }
member this.SectionInformation : System.Configuration.SectionInformation
Public ReadOnly Property SectionInformation As SectionInformation
Özellik Değeri
SectionInformation özelleştirilebilir olmayan bilgileri ve işlevselliğini ConfigurationSectioniçeren bir.
Örnekler
Aşağıdaki örnekte özelliğinin nasıl kullanılacağı gösterilmektedir SectionInformation .
static void DisplayCustomSectionInformation()
{
try
{
CustomSection customSection;
customSection =
ConfigurationManager.GetSection("CustomSection") as CustomSection;
if (customSection == null)
{
Console.WriteLine("Failed to load " + "CustomSection" + ".");
}
else
{
// Display specific information
Console.WriteLine("Defaults:");
Console.WriteLine("File Name: {0}", customSection.FileName);
Console.WriteLine("Max Users: {0}", customSection.MaxUsers);
Console.WriteLine("Max Idle Time: {0}", customSection.MaxIdleTime);
// Display generic information
Console.WriteLine("Generic information:");
Console.WriteLine("AllowExeDefinition: {0}",
customSection.SectionInformation.AllowExeDefinition.ToString());
Console.WriteLine("IsLocked: {0}",
customSection.SectionInformation.IsLocked.ToString());
}
}
catch (ConfigurationErrorsException err)
{
Console.WriteLine(err.ToString());
}
}
Shared Sub DisplayCustomSectionInformation()
Try
Dim customSection As CustomSection
customSection = ConfigurationManager.GetSection("CustomSection")
If customSection Is Nothing Then
Console.WriteLine(("Failed to load " + "CustomSection" + "."))
Else
' Display specific information
Console.WriteLine("Defaults:")
Console.WriteLine("File Name: {0}", customSection.FileName)
Console.WriteLine("Max Users: {0}", customSection.MaxUsers.ToString())
Console.WriteLine("Max Idle Time: {0}", customSection.MaxIdleTime.ToString())
' Display generic information
Console.WriteLine("Generic information:")
Console.WriteLine("AllowExeDefinition: {0}", customSection.SectionInformation.AllowExeDefinition.ToString())
Console.WriteLine("IsLocked: {0}", customSection.SectionInformation.IsLocked.ToString())
End If
Catch err As ConfigurationErrorsException
Console.WriteLine(err.ToString())
End Try
End Sub
Şunlara uygulanır
Ayrıca bkz.
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.