CommaDelimitedStringCollection クラス
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コンマで区切られた文字列要素のコレクションを表します。 このクラスは継承できません。
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
- 継承
次のコード例では、 型の使用方法を 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
このクラスは、文字列要素のコンマ区切りのリストとしてシリアル化される文字列コレクションを表します。
Comma |
CommaDelimitedStringCollection クラスの新しいインスタンスを作成します。 |
Count |
StringCollection に格納されている文字列の数を取得します。 (継承元 StringCollection) |
Is |
コレクションが変更されたかどうかを示す値を取得します。 |
Is |
コレクション オブジェクトが読み取り専用かどうかを示す値を取得します。 |
Is |
StringCollection へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 (継承元 StringCollection) |
Item[Int32] |
インデックスに基づいてコレクション内の文字列要素を取得または設定します。 |
Sync |
StringCollection へのアクセスを同期するために使用できるオブジェクトを取得します。 (継承元 StringCollection) |
Add(String) |
コンマ区切りのコレクションに文字列を追加します。 |
Add |
文字列配列のすべての文字列をコレクションに追加します。 |
Clear() |
コレクションを空にします。 |
Clone() |
コレクションのコピーを作成します。 |
Contains(String) |
指定した文字列が StringCollection 内にあるかどうかを確認します。 (継承元 StringCollection) |
Copy |
1 次元の文字列配列に、その配列内の指定したインデックスを開始位置として StringCollection 値全体をコピーします。 (継承元 StringCollection) |
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
Get |
StringEnumerator を反復処理する StringCollection を返します。 (継承元 StringCollection) |
Get |
既定のハッシュ関数として機能します。 (継承元 Object) |
Get |
現在のインスタンスの Type を取得します。 (継承元 Object) |
Index |
指定した文字列を検索し、StringCollection 内でその文字列が最初に見つかった位置の 0 から始まるインデックスを返します。 (継承元 StringCollection) |
Insert(Int32, String) |
コレクション内の指定したインデックス位置に、文字列要素を追加します。 |
Memberwise |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
Remove(String) |
文字列要素をコレクションから削除します。 |
Remove |
StringCollection 内の指定したインデックスにある文字列を削除します。 (継承元 StringCollection) |
Set |
コレクション オブジェクトを読み取り専用に設定します。 |
To |
オブジェクトの文字列形式を返します。 |
ICollection. |
StringCollection 全体を互換性のある 1 次元の Array にコピーします。コピー操作は、コピー先の配列の指定したインデックスから始まります。 (継承元 StringCollection) |
IEnumerable. |
IEnumerator を反復処理する StringCollection を返します。 (継承元 StringCollection) |
IList. |
StringCollection の末尾にオブジェクトを追加します。 (継承元 StringCollection) |
IList. |
ある要素が StringCollection 内に存在するかどうかを判断します。 (継承元 StringCollection) |
IList. |
指定した Object を検索し、StringCollection 全体内で最初に見つかった位置の 0 から始まるインデックスを返します。 (継承元 StringCollection) |
IList. |
StringCollection 内の指定したインデックスの位置に要素を挿入します。 (継承元 StringCollection) |
IList. |
StringCollection オブジェクトが固定サイズかどうかを示す値を取得します。 (継承元 StringCollection) |
IList. |
StringCollection オブジェクトが読み取り専用かどうかを示す値を取得します。 (継承元 StringCollection) |
IList. |
指定したインデックスにある要素を取得または設定します。 (継承元 StringCollection) |
IList. |
特定のオブジェクトが StringCollection 内にあるときに、最初に出現したものを削除します。 (継承元 StringCollection) |
Cast<TResult>(IEnumerable) |
IEnumerable の要素を、指定した型にキャストします。 |
Of |
指定された型に基づいて IEnumerable の要素をフィルター処理します。 |
As |
クエリの並列化を有効にします。 |
As |
IEnumerable を IQueryable に変換します。 |
製品 | バージョン |
---|---|
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9 |
.NET に関するフィードバック
.NET はオープンソース プロジェクトです。 フィードバックを提供するにはリンクを選択します。