This parameter sets the SPWeb.AssociatedMemberGroup property :
using (SPWeb web = ...)
{
web.AssociatedMemberGroup = someGroup;
web.Update();
}
You can use .NET Reflector to test it yourself - decompile the assembly Microsoft.SharePoint.ApplicationPages.dlland find the method BtnMakeDefaultGroup_Clickin the class PeoplePage.
source
share