CommaDelimitedStringCollection Klass

Definition

Representerar en samling strängelement avgränsade med kommatecken. Det går inte att ärva den här klassen.

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
Arv
CommaDelimitedStringCollection

Exempel

Följande kodexempel visar hur du använder typen CommaDelimitedStringCollection .

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

Kommentarer

Den här klassen representerar en strängsamling som serialiseras som en kommaavgränsad lista över strängelement.

Konstruktorer

Name Description
CommaDelimitedStringCollection()

Skapar en ny instans av CommaDelimitedStringCollection klassen.

Egenskaper

Name Description
Count

Hämtar antalet strängar som finns i StringCollection.

(Ärvd från StringCollection)
IsModified

Hämtar ett värde som anger om samlingen har ändrats.

IsReadOnly

Hämtar ett värde som anger om samlingsobjektet är skrivskyddat.

IsSynchronized

Hämtar ett värde som anger om åtkomsten StringCollection till är synkroniserad (trådsäker).

(Ärvd från StringCollection)
Item[Int32]

Hämtar eller anger ett strängelement i samlingen baserat på indexet.

SyncRoot

Hämtar ett objekt som kan användas för att synkronisera åtkomsten StringCollectiontill .

(Ärvd från StringCollection)

Metoder

Name Description
Add(String)

Lägger till en sträng i den kommaavgränsade samlingen.

AddRange(String[])

Lägger till alla strängar i en strängmatris i samlingen.

Clear()

Rensar samlingen.

Clone()

Skapar en kopia av samlingen.

Contains(String)

Avgör om den angivna strängen StringCollectionfinns i .

(Ärvd från StringCollection)
CopyTo(String[], Int32)

Kopierar hela StringCollection värden till en endimensionell matris med strängar, med början vid det angivna indexet för målmatrisen.

(Ärvd från StringCollection)
Equals(Object)

Avgör om det angivna objektet är lika med det aktuella objektet.

(Ärvd från Object)
GetEnumerator()

Returnerar en StringEnumerator som itererar via StringCollection.

(Ärvd från StringCollection)
GetHashCode()

Fungerar som standard-hash-funktion.

(Ärvd från Object)
GetType()

Hämtar den aktuella instansen Type .

(Ärvd från Object)
IndexOf(String)

Söker efter den angivna strängen och returnerar det nollbaserade indexet för den första förekomsten i StringCollection.

(Ärvd från StringCollection)
Insert(Int32, String)

Lägger till ett strängelement i samlingen i det angivna indexet.

MemberwiseClone()

Skapar en ytlig kopia av den aktuella Object.

(Ärvd från Object)
Remove(String)

Tar bort ett strängelement från samlingen.

RemoveAt(Int32)

Tar bort strängen vid det angivna indexet för StringCollection.

(Ärvd från StringCollection)
SetReadOnly()

Anger samlingsobjektet till skrivskyddat.

ToString()

Returnerar en strängrepresentation av objektet.

Explicita gränssnittsimplementeringar

Name Description
ICollection.CopyTo(Array, Int32)

Kopierar hela StringCollection till en kompatibel endimensionell Array, med början vid det angivna indexet för målmatrisen.

(Ärvd från StringCollection)
IEnumerable.GetEnumerator()

Returnerar en IEnumerator som itererar via StringCollection.

(Ärvd från StringCollection)
IList.Add(Object)

Lägger till ett objekt i slutet av StringCollection.

(Ärvd från StringCollection)
IList.Contains(Object)

Avgör om ett element finns i StringCollection.

(Ärvd från StringCollection)
IList.IndexOf(Object)

Söker efter den angivna Object och returnerar det nollbaserade indexet för den första förekomsten i hela StringCollection.

(Ärvd från StringCollection)
IList.Insert(Int32, Object)

Infogar ett element i StringCollection det angivna indexet.

(Ärvd från StringCollection)
IList.IsFixedSize

Hämtar ett värde som anger om StringCollection objektet har en fast storlek.

(Ärvd från StringCollection)
IList.IsReadOnly

Hämtar ett värde som anger om objektet StringCollection är skrivskyddat.

(Ärvd från StringCollection)
IList.Item[Int32]

Hämtar eller anger elementet vid det angivna indexet.

(Ärvd från StringCollection)
IList.Remove(Object)

Tar bort den första förekomsten av ett specifikt objekt från StringCollection.

(Ärvd från StringCollection)

Tilläggsmetoder

Name Description
AsParallel(IEnumerable)

Möjliggör parallellisering av en fråga.

AsQueryable(IEnumerable)

Konverterar en IEnumerable till en IQueryable.

Cast<TResult>(IEnumerable)

Omvandlar elementen i en IEnumerable till den angivna typen.

OfType<TResult>(IEnumerable)

Filtrerar elementen i en IEnumerable baserat på en angiven typ.

Gäller för

Se även