SectionInformation.SectionName Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene el nombre de la sección de configuración asociada.
public:
property System::String ^ SectionName { System::String ^ get(); };
public string SectionName { get; }
member this.SectionName : string
Public ReadOnly Property SectionName As String
Valor de propiedad
Nombre del objeto ConfigurationSection asociado.
Ejemplos
En el ejemplo siguiente se muestra cómo obtener el SectionName valor de un ConfigurationSection objeto .
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
Comentarios
El SectionName valor de la propiedad es el nombre de sección completo, que incluye la jerarquía de herencia de configuración.