CommaDelimitedStringCollection クラス
アセンブリ: System.Configuration (system.configuration.dll 内)



CommaDelimitedStringCollection 型を使用する方法を次のコード例に示します。
Imports System 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
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(); } } }

System.Collections.Specialized.StringCollection
System.Configuration.CommaDelimitedStringCollection


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


CommaDelimitedStringCollection コンストラクタ
アセンブリ: System.Configuration (system.configuration.dll 内)


CommaDelimitedStringCollection コンストラクタを使用する方法を次のコード例に示します。このコード例は CommaDelimitedStringCollection クラスの概要で取り上げているコード例の一部分です。

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


CommaDelimitedStringCollection プロパティ

名前 | 説明 | |
---|---|---|
![]() | Count | StringCollection に格納されている文字列の数を取得します。 ( StringCollection から継承されます。) |
![]() | IsModified | コレクションが変更されたかどうかを示す値を取得します。 |
![]() | IsReadOnly | コレクション オブジェクトが読み取り専用かどうかを示す値を取得します。 |
![]() | IsSynchronized | StringCollection へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 ( StringCollection から継承されます。) |
![]() | Item | インデックスに基づいてコレクション内の文字列要素を取得または設定します。 |
![]() | SyncRoot | StringCollection へのアクセスを同期するために使用できるオブジェクトを取得します。 ( StringCollection から継承されます。) |

CommaDelimitedStringCollection メソッド


名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

CommaDelimitedStringCollection メンバ
コンマで区切られた文字列要素のコレクションを表します。このクラスは継承できません。
CommaDelimitedStringCollection データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | Count | StringCollection に格納されている文字列の数を取得します。(StringCollection から継承されます。) |
![]() | IsModified | コレクションが変更されたかどうかを示す値を取得します。 |
![]() | IsReadOnly | コレクション オブジェクトが読み取り専用かどうかを示す値を取得します。 |
![]() | IsSynchronized | StringCollection へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。(StringCollection から継承されます。) |
![]() | Item | インデックスに基づいてコレクション内の文字列要素を取得または設定します。 |
![]() | SyncRoot | StringCollection へのアクセスを同期するために使用できるオブジェクトを取得します。(StringCollection から継承されます。) |


名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

- CommaDelimitedStringCollectionのページへのリンク