Sdílet prostřednictvím


RootProfilePropertySettingsCollection Třída

Definice

Funguje jako vrchol dvouúrovňové pojmenované hierarchie ProfilePropertySettingsCollection kolekcí.

public ref class RootProfilePropertySettingsCollection sealed : System::Web::Configuration::ProfilePropertySettingsCollection
[System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.ProfilePropertySettings))]
public sealed class RootProfilePropertySettingsCollection : System.Web.Configuration.ProfilePropertySettingsCollection
[<System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.ProfilePropertySettings))>]
type RootProfilePropertySettingsCollection = class
    inherit ProfilePropertySettingsCollection
Public NotInheritable Class RootProfilePropertySettingsCollection
Inherits ProfilePropertySettingsCollection
Dědičnost
Atributy

Příklady

Následující příklad kódu ukazuje, jak použít RootProfilePropertySettingsCollection typ jako PropertySettings vlastnost ProfileSection třídy. Tento příklad kódu je součástí většího příkladu uvedeného pro třídu ProfileSection.


// Display all current root ProfilePropertySettings.
Console.WriteLine("Current Root ProfilePropertySettings:");
int rootPPSCtr = 0;
foreach (ProfilePropertySettings rootPPS in profileSection.PropertySettings)
{
    Console.WriteLine("  {0}: ProfilePropertySetting '{1}'", ++rootPPSCtr,
        rootPPS.Name);
}

// Get and modify a root ProfilePropertySettings object.
Console.WriteLine(
    "Display and modify 'LastReadDate' ProfilePropertySettings:");
ProfilePropertySettings profilePropertySettings =
    profileSection.PropertySettings["LastReadDate"];

// Get the current ReadOnly property value.
Console.WriteLine(
    "Current ReadOnly value: '{0}'", profilePropertySettings.ReadOnly);

// Set the ReadOnly property to true.
profilePropertySettings.ReadOnly = true;

// Get the current AllowAnonymous property value.
Console.WriteLine(
    "Current AllowAnonymous value: '{0}'", profilePropertySettings.AllowAnonymous);

// Set the AllowAnonymous property to true.
profilePropertySettings.AllowAnonymous = true;

// Get the current SerializeAs property value.
Console.WriteLine(
    "Current SerializeAs value: '{0}'", profilePropertySettings.SerializeAs);

// Set the SerializeAs property to SerializationMode.Binary.
profilePropertySettings.SerializeAs = SerializationMode.Binary;

// Get the current Type property value.
Console.WriteLine(
    "Current Type value: '{0}'", profilePropertySettings.Type);

// Set the Type property to "System.DateTime".
profilePropertySettings.Type = "System.DateTime";

// Get the current DefaultValue property value.
Console.WriteLine(
    "Current DefaultValue value: '{0}'", profilePropertySettings.DefaultValue);

// Set the DefaultValue property to "March 16, 2004".
profilePropertySettings.DefaultValue = "March 16, 2004";

// Get the current ProviderName property value.
Console.WriteLine(
    "Current ProviderName value: '{0}'", profilePropertySettings.Provider);

// Set the ProviderName property to "AspNetSqlRoleProvider".
profilePropertySettings.Provider = "AspNetSqlRoleProvider";

// Get the current Name property value.
Console.WriteLine(
    "Current Name value: '{0}'", profilePropertySettings.Name);

// Set the Name property to "LastAccessDate".
profilePropertySettings.Name = "LastAccessDate";

// Display all current ProfileGroupSettings.
Console.WriteLine("Current ProfileGroupSettings:");
int PGSCtr = 0;
foreach (ProfileGroupSettings propGroups in profileSection.PropertySettings.GroupSettings)
{
    Console.WriteLine("  {0}: ProfileGroupSetting '{1}'", ++PGSCtr,
        propGroups.Name);
    int PPSCtr = 0;
    foreach (ProfilePropertySettings props in propGroups.PropertySettings)
    {
        Console.WriteLine("    {0}: ProfilePropertySetting '{1}'", ++PPSCtr,
            props.Name);
    }
}

// Add a new group.
ProfileGroupSettings newPropGroup = new ProfileGroupSettings("Forum");
profileSection.PropertySettings.GroupSettings.Add(newPropGroup);

// Add a new PropertySettings to the group.
ProfilePropertySettings newProp = new ProfilePropertySettings("AvatarImage");
newProp.Type = "System.String, System.dll";
newPropGroup.PropertySettings.Add(newProp);

// Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage");
newPropGroup.PropertySettings.RemoveAt(0);

// Clear all PropertySettings from the group.
newPropGroup.PropertySettings.Clear();


' Display all current root ProfilePropertySettings.
Console.WriteLine("Current Root ProfilePropertySettings:")
Dim rootPPSCtr As Integer = 0
For Each rootPPS As ProfilePropertySettings In profileSection.PropertySettings
    Console.WriteLine("  {0}: ProfilePropertySetting '{1}'", ++rootPPSCtr, _
        rootPPS.Name)
Next

' Get and modify a root ProfilePropertySettings object.
Console.WriteLine( _
    "Display and modify 'LastReadDate' ProfilePropertySettings:")
Dim profilePropertySettings As ProfilePropertySettings = _
    profileSection.PropertySettings("LastReadDate")

' Get the current ReadOnly property value.
Console.WriteLine( _
    "Current ReadOnly value: '{0}'", profilePropertySettings.ReadOnly)

' Set the ReadOnly property to true.
profilePropertySettings.ReadOnly = true

' Get the current AllowAnonymous property value.
Console.WriteLine( _
    "Current AllowAnonymous value: '{0}'", profilePropertySettings.AllowAnonymous)

' Set the AllowAnonymous property to true.
profilePropertySettings.AllowAnonymous = true

' Get the current SerializeAs property value.
Console.WriteLine( _
    "Current SerializeAs value: '{0}'", profilePropertySettings.SerializeAs)

' Set the SerializeAs property to SerializationMode.Binary.
profilePropertySettings.SerializeAs = SerializationMode.Binary

' Get the current Type property value.
Console.WriteLine( _
    "Current Type value: '{0}'", profilePropertySettings.Type)

' Set the Type property to "System.DateTime".
profilePropertySettings.Type = "System.DateTime"

' Get the current DefaultValue property value.
Console.WriteLine( _
    "Current DefaultValue value: '{0}'", profilePropertySettings.DefaultValue)

' Set the DefaultValue property to "March 16, 2004".
profilePropertySettings.DefaultValue = "March 16, 2004"

' Get the current ProviderName property value.
            Console.WriteLine( _
                "Current ProviderName value: '{0}'", profilePropertySettings.Provider)

' Set the ProviderName property to "AspNetSqlRoleProvider".
            profilePropertySettings.Provider = "AspNetSqlRoleProvider"

' Get the current Name property value.
Console.WriteLine( _
    "Current Name value: '{0}'", profilePropertySettings.Name)

' Set the Name property to "LastAccessDate".
profilePropertySettings.Name = "LastAccessDate"

' Display all current ProfileGroupSettings.
Console.WriteLine("Current ProfileGroupSettings:")
Dim PGSCtr As Integer = 0
For Each propGroups As ProfileGroupSettings In profileSection.PropertySettings.GroupSettings
                    Console.WriteLine("  {0}: ProfileGroupSettings '{1}'", ++PGSCtr, _
        propGroups.Name)
    Dim PPSCtr As Integer = 0
    For Each props As ProfilePropertySettings In propGroups.PropertySettings
        Console.WriteLine("    {0}: ProfilePropertySetting '{1}'", ++PPSCtr, _
            props.Name)
    Next
Next

' Add a new group.
Dim newPropGroup As ProfileGroupSettings = new ProfileGroupSettings("Forum")
profileSection.PropertySettings.GroupSettings.Add(newPropGroup)

' Add a new PropertySettings to the group.
Dim newProp As ProfilePropertySettings = new ProfilePropertySettings("AvatarImage")
newProp.Type = "System.String, System.dll"
newPropGroup.PropertySettings.Add(newProp)

' Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage")
newPropGroup.PropertySettings.RemoveAt(0)

' Clear all PropertySettings from the group.
newPropGroup.PropertySettings.Clear()

Poznámky

Třída RootProfilePropertySettingsCollection je kolekce na kořenové úrovni ProfilePropertySettingsCollection i kontejner pro kolekci ProfileGroupSettingsCollection . Tyto kolekce umožňují vytvářet pojmenované skupiny více ProfilePropertySettingsCollection kolekcí, z nichž každý obsahuje jednotlivé pojmenované ProfilePropertySettings objekty. Další informace o funkcích profilu přidaných do ASP.NET 2.0 najdete v tématu ASP.NET Vlastnosti profilu.

Vlastnost PropertySettings je RootProfilePropertySettingsCollection objekt, který obsahuje všechny vlastnosti definované v properties pododdílu profile oddílu konfiguračního souboru.

Konstruktory

Name Description
RootProfilePropertySettingsCollection()

Inicializuje novou instanci RootProfilePropertySettingsCollection třídy pomocí výchozího nastavení.

Vlastnosti

Name Description
AddElementName

Získá nebo nastaví název ConfigurationElement pro přidružení k operaci přidání v ConfigurationElementCollection při přepsání v odvozené třídě.

(Zděděno od ConfigurationElementCollection)
AllKeys

Vrátí pole obsahující názvy všech ProfileSection objektů obsažených v kolekci.

(Zděděno od ProfilePropertySettingsCollection)
AllowClear

Získá hodnotu určující, zda <clear> element je platný jako ProfilePropertySettings objekt.

(Zděděno od ProfilePropertySettingsCollection)
ClearElementName

Získá nebo nastaví název pro ConfigurationElement přidružení k jasné operaci v ConfigurationElementCollection při přepsání v odvozené třídě.

(Zděděno od ConfigurationElementCollection)
CollectionType

Získá typ ConfigurationElementCollection.

(Zděděno od ConfigurationElementCollection)
Count

Získá počet prvků v kolekci.

(Zděděno od ConfigurationElementCollection)
CurrentConfiguration

Získá odkaz na instanci nejvyšší úrovně Configuration , která představuje hierarchii konfigurace, ke které patří aktuální ConfigurationElement instance.

(Zděděno od ConfigurationElement)
ElementInformation

ElementInformation Získá objekt, který obsahuje neuzpůsobitelné informace a funkce objektuConfigurationElement.

(Zděděno od ConfigurationElement)
ElementName

Získá název použitý k identifikaci této kolekce elementů v konfiguračním souboru při přepsání v odvozené třídě.

(Zděděno od ConfigurationElementCollection)
ElementProperty

ConfigurationElementProperty Získá objekt, který představuje ConfigurationElement samotný objekt.

(Zděděno od ConfigurationElement)
EmitClear

Získá nebo nastaví hodnotu, která určuje, zda kolekce byla vymazána.

(Zděděno od ConfigurationElementCollection)
EvaluationContext

Získá objekt ContextInformation pro objekt ConfigurationElement.

(Zděděno od ConfigurationElement)
GroupSettings

ProfileGroupSettingsCollection Získá obsahující kolekci ProfileGroupSettings objektů.

HasContext

Získá hodnotu, která určuje, zda CurrentConfiguration je nullvlastnost .

(Zděděno od ConfigurationElement)
IsSynchronized

Získá hodnotu určující, zda je přístup ke kolekci synchronizován.

(Zděděno od ConfigurationElementCollection)
Item[ConfigurationProperty]

Získá nebo nastaví vlastnost nebo atribut tohoto elementu konfigurace.

(Zděděno od ConfigurationElement)
Item[Int32]

Získá nebo nastaví ProfilePropertySettings objekt v zadaném umístění indexu.

(Zděděno od ProfilePropertySettingsCollection)
Item[String]

Získá nebo nastaví ProfilePropertySettings objekt se zadaným názvem.

(Zděděno od ProfilePropertySettingsCollection)
LockAllAttributesExcept

Získá kolekci uzamčených atributů.

(Zděděno od ConfigurationElement)
LockAllElementsExcept

Získá kolekci uzamčených prvků.

(Zděděno od ConfigurationElement)
LockAttributes

Získá kolekci uzamčených atributů.

(Zděděno od ConfigurationElement)
LockElements

Získá kolekci uzamčených prvků.

(Zděděno od ConfigurationElement)
LockItem

Získá nebo nastaví hodnotu označující, zda je prvek uzamčen.

(Zděděno od ConfigurationElement)
Properties

Získá kolekci vlastností konfigurace.

(Zděděno od ProfilePropertySettingsCollection)
RemoveElementName

Získá nebo nastaví název ConfigurationElement pro přidružení k remove operace v ConfigurationElementCollection při přepsání v odvozené třídě.

(Zděděno od ConfigurationElementCollection)
SyncRoot

Získá objekt použitý k synchronizaci přístupu k objektu ConfigurationElementCollection.

(Zděděno od ConfigurationElementCollection)
ThrowOnDuplicate

Získá hodnotu určující, zda má být vyvolán chyba při pokusu o vytvoření duplicitní objektu.

(Zděděno od ProfilePropertySettingsCollection)

Metody

Name Description
Add(ProfilePropertySettings)

ProfilePropertySettings Přidá objekt do kolekce.

(Zděděno od ProfilePropertySettingsCollection)
BaseAdd(ConfigurationElement, Boolean)

Přidá element konfigurace do kolekce elementů konfigurace.

(Zděděno od ConfigurationElementCollection)
BaseAdd(ConfigurationElement)

Přidá do objektu ConfigurationElementCollection.

(Zděděno od ConfigurationElementCollection)
BaseAdd(Int32, ConfigurationElement)

Přidá element konfigurace do kolekce elementů konfigurace.

(Zděděno od ConfigurationElementCollection)
BaseClear()

Odebere všechny objekty elementu konfigurace z kolekce.

(Zděděno od ConfigurationElementCollection)
BaseGet(Int32)

Získá konfigurační prvek v zadaném umístění indexu.

(Zděděno od ConfigurationElementCollection)
BaseGet(Object)

Vrátí prvek konfigurace se zadaným klíčem.

(Zděděno od ConfigurationElementCollection)
BaseGetAllKeys()

Vrátí pole klíčů pro všechny elementy konfigurace obsažené v objektu ConfigurationElementCollection.

(Zděděno od ConfigurationElementCollection)
BaseGetKey(Int32)

Získá klíč pro zadané umístění indexu ConfigurationElement .

(Zděděno od ConfigurationElementCollection)
BaseIndexOf(ConfigurationElement)

Označuje index zadaného ConfigurationElementparametru .

(Zděděno od ConfigurationElementCollection)
BaseIsRemoved(Object)

Určuje, zda byl ConfigurationElement se zadaným klíčem odebrán z objektu ConfigurationElementCollection.

(Zděděno od ConfigurationElementCollection)
BaseRemove(Object)

Odebere kolekci ConfigurationElement .

(Zděděno od ConfigurationElementCollection)
BaseRemoveAt(Int32)

Odebere v zadaném umístění indexu ConfigurationElement .

(Zděděno od ConfigurationElementCollection)
Clear()

Odebere všechny ProfilePropertySettings objekty z kolekce.

(Zděděno od ProfilePropertySettingsCollection)
CopyTo(ConfigurationElement[], Int32)

Zkopíruje obsah pole ConfigurationElementCollection .

(Zděděno od ConfigurationElementCollection)
CreateNewElement()

Při přepsání v odvozené třídě vytvoří novou ConfigurationElement.

(Zděděno od ProfilePropertySettingsCollection)
CreateNewElement(String)

Vytvoří novou ConfigurationElement při přepsání v odvozené třídě.

(Zděděno od ConfigurationElementCollection)
DeserializeElement(XmlReader, Boolean)

Načte XML z konfiguračního souboru.

(Zděděno od ConfigurationElement)
Equals(Object)

Porovná aktuální RootProfilePropertySettingsCollection objekt s jiným objektem A RootProfilePropertySettingsCollection .

Get(Int32)

ProfileSection Vrátí objekt v zadaném indexu.

(Zděděno od ProfilePropertySettingsCollection)
Get(String)

ProfileSection Vrátí objekt se zadaným názvem.

(Zděděno od ProfilePropertySettingsCollection)
GetElementKey(ConfigurationElement)

Získá klíč pro zadaný element konfigurace.

(Zděděno od ProfilePropertySettingsCollection)
GetEnumerator()

IEnumerator Získá, který se používá k iteraci přes ConfigurationElementCollection.

(Zděděno od ConfigurationElementCollection)
GetHashCode()

Vygeneruje kód hash pro kolekci.

GetKey(Int32)

Získá název v ProfilePropertySettings zadaném umístění indexu.

(Zděděno od ProfilePropertySettingsCollection)
GetTransformedAssemblyString(String)

Vrátí transformovanou verzi zadaného názvu sestavení.

(Zděděno od ConfigurationElement)
GetTransformedTypeString(String)

Vrátí transformovanou verzi zadaného názvu typu.

(Zděděno od ConfigurationElement)
GetType()

Získá Type aktuální instance.

(Zděděno od Object)
IndexOf(ProfilePropertySettings)

Vrátí index zadaného ProfilePropertySettings objektu.

(Zděděno od ProfilePropertySettingsCollection)
Init()

ConfigurationElement Nastaví objekt na počáteční stav.

(Zděděno od ConfigurationElement)
InitializeDefault()

Slouží k inicializaci výchozí sady hodnot objektu ConfigurationElement .

(Zděděno od ConfigurationElement)
IsElementName(String)

Určuje, zda zadaný ConfigurationElement existuje v sadě ConfigurationElementCollection.

(Zděděno od ConfigurationElementCollection)
IsElementRemovable(ConfigurationElement)

Určuje, zda je možné zadaného objektu ConfigurationElement odebrat z objektu ConfigurationElementCollection.

(Zděděno od ConfigurationElementCollection)
IsModified()

Označuje, zda byla změněna ConfigurationElementCollection od posledního uložení nebo načtení při přepsání v odvozené třídě.

(Zděděno od ConfigurationElementCollection)
IsReadOnly()

Určuje, zda ConfigurationElementCollection je objekt jen pro čtení.

(Zděděno od ConfigurationElementCollection)
ListErrors(IList)

Přidá chyby neplatné vlastnosti v tomto ConfigurationElement objektu a ve všech dílčích poplatcích do předaného seznamu.

(Zděděno od ConfigurationElement)
MemberwiseClone()

Vytvoří mělkou kopii aktuálního Object.

(Zděděno od Object)
OnDeserializeUnrecognizedAttribute(String, String)

Získá hodnotu určující, zda neznámý atribut je zjištěn během deserializace.

(Zděděno od ConfigurationElement)
OnDeserializeUnrecognizedElement(String, XmlReader)

Zpracovává čtení nerozpoznaných konfiguračních prvků z konfiguračního souboru a způsobí, že konfigurační systém vyvolá výjimku, pokud prvek nelze zpracovat.

(Zděděno od ProfilePropertySettingsCollection)
OnRequiredPropertyNotFound(String)

Vyvolá výjimku, pokud nebyla nalezena požadovaná vlastnost.

(Zděděno od ConfigurationElement)
PostDeserialize()

Volal po deserializaci.

(Zděděno od ConfigurationElement)
PreSerialize(XmlWriter)

Volá se před serializací.

(Zděděno od ConfigurationElement)
Remove(String)

Odebere ProfilePropertySettings objekt z kolekce.

(Zděděno od ProfilePropertySettingsCollection)
RemoveAt(Int32)

Odebere ProfilePropertySettings objekt v zadaném umístění indexu z kolekce.

(Zděděno od ProfilePropertySettingsCollection)
Reset(ConfigurationElement)

ConfigurationElementCollection Obnoví stav v nezměněném stavu při přepsání v odvozené třídě.

(Zděděno od ConfigurationElementCollection)
ResetModified()

Obnoví hodnotu IsModified() vlastnosti při false přepsání v odvozené třídě.

(Zděděno od ConfigurationElementCollection)
SerializeElement(XmlWriter, Boolean)

Zapíše konfigurační data do elementu XML v konfiguračním souboru při přepsání v odvozené třídě.

(Zděděno od ConfigurationElementCollection)
SerializeToXmlElement(XmlWriter, String)

Zapíše vnější značky tohoto konfiguračního prvku do konfiguračního souboru při implementaci v odvozené třídě.

(Zděděno od ConfigurationElement)
Set(ProfilePropertySettings)

Přidá zadaný ProfilePropertySettings objekt do kolekce.

(Zděděno od ProfilePropertySettingsCollection)
SetPropertyValue(ConfigurationProperty, Object, Boolean)

Nastaví vlastnost na zadanou hodnotu.

(Zděděno od ConfigurationElement)
SetReadOnly()

IsReadOnly() Nastaví vlastnost objektu ConfigurationElementCollection a pro všechny dílčí prvky.

(Zděděno od ConfigurationElementCollection)
ToString()

Vrátí řetězec, který představuje aktuální objekt.

(Zděděno od Object)
Unmerge(ConfigurationElement, ConfigurationElement, ConfigurationSaveMode)

Obrátí účinek sloučení informací o konfiguraci z různých úrovní hierarchie konfigurace.

(Zděděno od ConfigurationElementCollection)

Explicitní implementace rozhraní

Name Description
ICollection.CopyTo(Array, Int32)

Zkopíruje pole ConfigurationElementCollection .

(Zděděno od ConfigurationElementCollection)

Metody rozšíření

Name Description
AsParallel(IEnumerable)

Umožňuje paralelizaci dotazu.

AsQueryable(IEnumerable)

Převede IEnumerable na IQueryable.

Cast<TResult>(IEnumerable)

Přetypuje prvky IEnumerable na zadaný typ.

OfType<TResult>(IEnumerable)

Filtruje prvky IEnumerable na základě zadaného typu.

Platí pro

Viz také