CommaDelimitedStringCollection Klasa
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Reprezentuje kolekcję elementów ciągu rozdzielonych przecinkami. Klasa ta nie może być dziedziczona.
public ref class CommaDelimitedStringCollection sealed : System::Collections::Specialized::StringCollection
public sealed class CommaDelimitedStringCollection : System.Collections.Specialized.StringCollection
type CommaDelimitedStringCollection = class
inherit StringCollection
Public NotInheritable Class CommaDelimitedStringCollection
Inherits StringCollection
- Dziedziczenie
Przykłady
W poniższym przykładzie kodu pokazano, jak używać CommaDelimitedStringCollection typu.
using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Configuration;
using System.Collections.Specialized;
namespace Samples.AspNet.Config
{
class CommaDelimitedStrCollection
{
static void Main(string[] args)
{
// Display title and info.
Console.WriteLine("ASP.NET Configuration Info");
Console.WriteLine("Type: CommaDelimitedStringCollection");
Console.WriteLine();
// Set the path of the config file.
string configPath = "/aspnet";
// Get the Web application configuration object.
Configuration config =
WebConfigurationManager.OpenWebConfiguration(configPath);
// Get the section related object.
AuthorizationSection configSection =
(AuthorizationSection)config.GetSection("system.web/authorization");
// Get the authorization rule collection.
AuthorizationRuleCollection authorizationRuleCollection =
configSection.Rules;
// Create a CommaDelimitedStringCollection object.
CommaDelimitedStringCollection myStrCollection =
new CommaDelimitedStringCollection();
for (int i = 0; i < authorizationRuleCollection.Count; i++)
{
if (authorizationRuleCollection.Get(i).Action.ToString().ToLower()
== "allow")
{
// Add values to the CommaDelimitedStringCollection object.
myStrCollection.AddRange(
authorizationRuleCollection.Get(i).Users.ToString().Split(
",".ToCharArray()));
}
}
Console.WriteLine("Allowed Users: {0}",
myStrCollection.ToString());
// Count the elements in the collection.
Console.WriteLine("Allowed User Count: {0}",
myStrCollection.Count);
// Call the Contains method.
Console.WriteLine("Contains 'userName1': {0}",
myStrCollection.Contains("userName1"));
// Determine the index of an element
// in the collection.
Console.WriteLine("IndexOf 'userName0': {0}",
myStrCollection.IndexOf("userName0"));
// Call IsModified.
Console.WriteLine("IsModified: {0}",
myStrCollection.IsModified);
// Call IsReadyOnly.
Console.WriteLine("IsReadOnly: {0}",
myStrCollection.IsReadOnly);
Console.WriteLine();
Console.WriteLine("Add a user name to the collection.");
// Insert a new element in the collection.
myStrCollection.Insert(myStrCollection.Count, "userNameX");
Console.WriteLine("Collection Value: {0}",
myStrCollection.ToString());
Console.WriteLine();
Console.WriteLine("Remove a user name from the collection.");
// Remove an element of the collection.
myStrCollection.Remove("userNameX");
Console.WriteLine("Collection Value: {0}",
myStrCollection.ToString());
// Display and wait
Console.ReadLine();
}
}
}
Imports System.Collections.Generic
Imports System.Text
Imports System.Configuration
Imports System.Collections
Imports System.Web
Imports System.Web.Configuration
Imports System.Collections.Specialized
Namespace Samples.AspNet.Config
Class CommaDelimitedStrCollection
Shared Sub Main(ByVal args() As String)
' Display title and info.
Console.WriteLine("ASP.NET Configuration Info")
Console.WriteLine("Type: CommaDelimitedStringCollection")
Console.WriteLine()
' Set the path of the config file.
Dim configPath As String = "/aspnet"
' Get the Web application configuration object.
Dim config As Configuration = _
WebConfigurationManager.OpenWebConfiguration(configPath)
' Get the section related object.
Dim configSection As AuthorizationSection = _
CType(config.GetSection("system.web/authorization"), AuthorizationSection)
' Get the authorization rule collection.
Dim authorizationRuleCollection As AuthorizationRuleCollection = _
configSection.Rules()
' Create a CommaDelimitedStringCollection object.
Dim myStrCollection As CommaDelimitedStringCollection = _
New CommaDelimitedStringCollection()
Dim i As Integer
For i = 0 To authorizationRuleCollection.Count - 1 Step i + 1
If authorizationRuleCollection.Get(i).Action.ToString().ToLower() _
= "allow" Then
' Add values to the CommaDelimitedStringCollection object.
myStrCollection.AddRange( _
authorizationRuleCollection.Get(i).Users.ToString().Split( _
",".ToCharArray()))
End If
Next
Console.WriteLine("Allowed Users: {0}", _
myStrCollection.ToString())
' Count the elements in the collection.
Console.WriteLine("Allowed User Count: {0}", _
myStrCollection.Count)
' Call the Contains method.
Console.WriteLine("Contains 'userName1': {0}", _
myStrCollection.Contains("userName1"))
' Determine the index of an element
' in the collection.
Console.WriteLine("IndexOf 'userName0': {0}", _
myStrCollection.IndexOf("userName0"))
' Call IsModified.
Console.WriteLine("IsModified: {0}", _
myStrCollection.IsModified)
' Call IsReadyOnly.
Console.WriteLine("IsReadOnly: {0}", _
myStrCollection.IsReadOnly)
Console.WriteLine()
Console.WriteLine("Add a user name to the collection.")
' Insert a new element in the collection.
myStrCollection.Insert(myStrCollection.Count, "userNameX")
Console.WriteLine("Collection Value: {0}", _
myStrCollection.ToString())
Console.WriteLine()
Console.WriteLine("Remove a user name from the collection.")
' Remove an element of the collection.
myStrCollection.Remove("userNameX")
Console.WriteLine("Collection Value: {0}", _
myStrCollection.ToString())
' Display and wait
Console.ReadLine()
End Sub
End Class
End Namespace
Uwagi
Ta klasa reprezentuje kolekcję ciągów, która jest serializowana jako rozdzielana przecinkami lista elementów ciągu.
Konstruktory
CommaDelimitedStringCollection() |
Tworzy nowe wystąpienie klasy CommaDelimitedStringCollection. |
Właściwości
Count |
Pobiera liczbę ciągów zawartych w obiekcie StringCollection. (Odziedziczone po StringCollection) |
IsModified |
Pobiera wartość określającą, czy kolekcja została zmodyfikowana. |
IsReadOnly |
Pobiera wartość wskazującą, czy obiekt kolekcji jest tylko do odczytu. |
IsSynchronized |
Pobiera wartość wskazującą, czy dostęp do elementu StringCollection jest synchronizowany (bezpieczny wątk). (Odziedziczone po StringCollection) |
Item[Int32] |
Pobiera lub ustawia element ciągu w kolekcji na podstawie indeksu. |
SyncRoot |
Pobiera obiekt, który może służyć do synchronizowania dostępu do obiektu StringCollection. (Odziedziczone po StringCollection) |
Metody
Add(String) |
Dodaje ciąg do kolekcji rozdzielanej przecinkami. |
AddRange(String[]) |
Dodaje wszystkie ciągi w tablicy ciągów do kolekcji. |
Clear() |
Czyści kolekcję. |
Clone() |
Tworzy kopię kolekcji. |
Contains(String) |
Określa, czy określony ciąg znajduje się w obiekcie StringCollection. (Odziedziczone po StringCollection) |
CopyTo(String[], Int32) |
Kopiuje całe StringCollection wartości do jednowymiarowej tablicy ciągów, zaczynając od określonego indeksu tablicy docelowej. (Odziedziczone po StringCollection) |
Equals(Object) |
Określa, czy dany obiekt jest taki sam, jak bieżący obiekt. (Odziedziczone po Object) |
GetEnumerator() |
Zwraca wartość , StringEnumerator która iteruje za pośrednictwem .StringCollection (Odziedziczone po StringCollection) |
GetHashCode() |
Służy jako domyślna funkcja skrótu. (Odziedziczone po Object) |
GetType() |
Type Pobiera wartość bieżącego wystąpienia. (Odziedziczone po Object) |
IndexOf(String) |
Wyszukuje określony ciąg i zwraca indeks oparty na zerze pierwszego wystąpienia w obiekcie StringCollection. (Odziedziczone po StringCollection) |
Insert(Int32, String) |
Dodaje element string do kolekcji w określonym indeksie. |
MemberwiseClone() |
Tworzy płytkią kopię bieżącego Objectelementu . (Odziedziczone po Object) |
Remove(String) |
Usuwa element ciągu z kolekcji. |
RemoveAt(Int32) |
Usuwa ciąg w określonym indeksie obiektu StringCollection. (Odziedziczone po StringCollection) |
SetReadOnly() |
Ustawia obiekt kolekcji na tylko do odczytu. |
ToString() |
Zwraca reprezentację ciągu obiektu. |
Jawne implementacje interfejsu
ICollection.CopyTo(Array, Int32) |
Kopiuje całość StringCollection do zgodnego jednowymiarowego Arrayobiektu , zaczynając od określonego indeksu tablicy docelowej. (Odziedziczone po StringCollection) |
IEnumerable.GetEnumerator() |
Zwraca wartość , IEnumerator która iteruje za pośrednictwem .StringCollection (Odziedziczone po StringCollection) |
IList.Add(Object) |
Dodaje obiekt na końcu obiektu StringCollection. (Odziedziczone po StringCollection) |
IList.Contains(Object) |
Określa, czy element znajduje się w elemecie StringCollection. (Odziedziczone po StringCollection) |
IList.IndexOf(Object) |
Wyszukuje określony Object element i zwraca indeks oparty na zerze pierwszego wystąpienia w całym StringCollectionobiekcie . (Odziedziczone po StringCollection) |
IList.Insert(Int32, Object) |
Wstawia element do określonego indeksu StringCollection . (Odziedziczone po StringCollection) |
IList.IsFixedSize |
Pobiera wartość wskazującą, czy StringCollection obiekt ma stały rozmiar. (Odziedziczone po StringCollection) |
IList.IsReadOnly |
Pobiera wartość wskazującą, czy StringCollection obiekt jest tylko do odczytu. (Odziedziczone po StringCollection) |
IList.Item[Int32] |
Pobiera lub ustawia element pod określonym indeksem. (Odziedziczone po StringCollection) |
IList.Remove(Object) |
Usuwa pierwsze wystąpienie określonego obiektu z obiektu StringCollection. (Odziedziczone po StringCollection) |
Metody rozszerzania
Cast<TResult>(IEnumerable) |
Rzutuje elementy obiektu IEnumerable na określony typ. |
OfType<TResult>(IEnumerable) |
Filtruje elementy IEnumerable elementu na podstawie określonego typu. |
AsParallel(IEnumerable) |
Umożliwia równoległość zapytania. |
AsQueryable(IEnumerable) |
Konwertuje element IEnumerable na .IQueryable |