ConfigurationSectionGroup.SectionGroupName Propriedade
Definição
Obtém o nome do grupo da seção associado a esta ConfigurationSectionGroup.Gets the section group name associated with this ConfigurationSectionGroup.
public:
property System::String ^ SectionGroupName { System::String ^ get(); };
public string SectionGroupName { get; }
member this.SectionGroupName : string
Public ReadOnly Property SectionGroupName As String
Valor da propriedade
O nome do grupo de seções deste ConfigurationSectionGroup objeto.The section group name of this ConfigurationSectionGroup object.
Exemplos
O exemplo de código a seguir mostra como exibir o nome dessa instância da ConfigurationSectionGroup classe.The following code example shows how to display the name of this instance of the ConfigurationSectionGroup class. Isso faz parte de um exemplo maior fornecido na visão geral da ConfigurationSectionGroup classe.This is part of a larger example provided in the overview for the ConfigurationSectionGroup class.
// Get the fully qualified group name.
indent("Section Group Name: " + sectionGroup.SectionGroupName);
' Get the fully qualified section group name.
indent("Section Group Name: " + sectionGroup.SectionGroupName)
Comentários
O SectionGroupName valor da propriedade é o nome do caminho completo do grupo de seções, incluindo os grupos de seções pai.The SectionGroupName property value is the full path name of the section group, including the parent section groups.