ConfigurationSectionGroup.SectionGroupName Property

Definition

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

Property Value

The section group name of this ConfigurationSectionGroup object.

Examples

The following code example shows how to display the name of this instance of the ConfigurationSectionGroup class. 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)

Remarks

The SectionGroupName property value is the full path name of the section group, including the parent section groups.

Applies to

See also