RuleSettingsCollection 클래스
정의
RuleSettings 개체의 컬렉션입니다.A collection of RuleSettings objects. 이 클래스는 상속될 수 없습니다.This class cannot be inherited.
public ref class RuleSettingsCollection sealed : System::Configuration::ConfigurationElementCollection
[System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.RuleSettings))]
public sealed class RuleSettingsCollection : System.Configuration.ConfigurationElementCollection
type RuleSettingsCollection = class
inherit ConfigurationElementCollection
Public NotInheritable Class RuleSettingsCollection
Inherits ConfigurationElementCollection
- 상속
- 특성
예제
다음 코드 예제를 사용 하는 방법을 보여 줍니다는 RuleSettingsCollection 형식입니다.The following code example shows how to use the RuleSettingsCollection type. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 HealthMonitoringSection 클래스입니다.This code example is part of a larger example provided for the HealthMonitoringSection class.
// Add a RuleSettings object to the Rules collection property.
RuleSettings ruleSetting = new RuleSettings("All Errors Default",
"All Errors", "EventLogProvider");
ruleSetting.Name = "All Errors Custom";
ruleSetting.EventName = "All Errors";
ruleSetting.Provider = "EventLogProvider";
ruleSetting.Profile = "Custom";
ruleSetting.MaxLimit = Int32.MaxValue;
ruleSetting.MinInstances = 1;
ruleSetting.MinInterval = TimeSpan.Parse("00:00:30");
ruleSetting.Custom = "MyEvaluators.MyCustomeEvaluator2, MyCustom.dll";
healthMonitoringSection.Rules.Add(ruleSetting);
// Add a RuleSettings object to the Rules collection property.
healthMonitoringSection.Rules.Add(new RuleSettings("All Errors Default",
"All Errors", "EventLogProvider"));
// Add a RuleSettings object to the Rules collection property.
healthMonitoringSection.Rules.Add(new RuleSettings("Failure Audits Default",
"Failure Audits", "EventLogProvider", "Default", 1, Int32.MaxValue,
new TimeSpan(0, 1, 0)));
// Add a RuleSettings object to the Rules collection property.
healthMonitoringSection.Rules.Add(new RuleSettings("Failure Audits Custom",
"Failure Audits", "EventLogProvider", "Custom", 1, Int32.MaxValue,
new TimeSpan(0, 1, 0), "MyEvaluators.MyCustomeEvaluator2, MyCustom.dll"));
// Insert an RuleSettings object into the Rules collection property.
healthMonitoringSection.Rules.Insert(1,
new RuleSettings("All Errors Default2",
"All Errors", "EventLogProvider"));
// Display contents of the Rules collection property
Console.WriteLine(
"Rules Collection contains {0} values:", healthMonitoringSection.Rules.Count);
// Display all elements.
for (System.Int32 i = 0; i < healthMonitoringSection.Rules.Count; i++)
{
ruleSetting = healthMonitoringSection.Rules[i];
string name = ruleSetting.Name;
string eventName = ruleSetting.EventName;
string provider = ruleSetting.Provider;
string profile = ruleSetting.Profile;
int minInstances = ruleSetting.MinInstances;
int maxLimit = ruleSetting.MaxLimit;
TimeSpan minInterval = ruleSetting.MinInterval;
string custom = ruleSetting.Custom;
string item = "Name='" + name + "', EventName='" + eventName +
"', Provider = '" + provider + "', Profile = '" + profile +
"', MinInstances = '" + minInstances + "', MaxLimit = '" + maxLimit +
"', MinInterval = '" + minInterval + "', Custom = '" + custom + "'";
Console.WriteLine(" Item {0}: {1}", i, item);
}
// See if the Rules collection property contains the RuleSettings 'All Errors Default'.
Console.WriteLine("EventMappings contains 'All Errors Default': {0}.",
healthMonitoringSection.Rules.Contains("All Errors Default"));
// Get the index of the 'All Errors Default' RuleSettings in the Rules collection property.
Console.WriteLine("EventMappings index for 'All Errors Default': {0}.",
healthMonitoringSection.Rules.IndexOf("All Errors Default"));
// Get a named RuleSettings
ruleSetting = healthMonitoringSection.Rules["All Errors Default"];
// Remove a RuleSettings object from the Rules collection property.
healthMonitoringSection.Rules.Remove("All Errors Default");
// Remove a RuleSettings object from the Rules collection property.
healthMonitoringSection.Rules.RemoveAt(0);
// Clear all RuleSettings object from the Rules collection property.
healthMonitoringSection.Rules.Clear();
' Add a RuleSettings object to the Rules collection property.
Dim ruleSetting As RuleSettings = new RuleSettings("All Errors Default", _
"All Errors", "EventLogProvider")
ruleSetting.Name = "All Errors Custom"
ruleSetting.EventName = "All Errors"
ruleSetting.Provider = "EventLogProvider"
ruleSetting.Profile = "Custom"
ruleSetting.MaxLimit = Int32.MaxValue
ruleSetting.MinInstances = 1
ruleSetting.MinInterval = TimeSpan.Parse("00:00:30")
ruleSetting.Custom = "MyEvaluators.MyCustomeEvaluator2, MyCustom.dll"
healthMonitoringSection.Rules.Add(ruleSetting)
' Add a RuleSettings object to the Rules collection property.
healthMonitoringSection.Rules.Add(new RuleSettings("All Errors Default", _
"All Errors", "EventLogProvider"))
' Add a RuleSettings object to the Rules collection property.
healthMonitoringSection.Rules.Add(new RuleSettings("Failure Audits Default", _
"Failure Audits", "EventLogProvider", "Default", 1, Int32.MaxValue, _
new TimeSpan(0, 1, 0)))
' Add a RuleSettings object to the Rules collection property.
healthMonitoringSection.Rules.Add(new RuleSettings("Failure Audits Custom", _
"Failure Audits", "EventLogProvider", "Custom", 1, Int32.MaxValue, _
new TimeSpan(0, 1, 0), "MyEvaluators.MyCustomeEvaluator2, MyCustom.dll"))
' Insert an RuleSettings object into the Rules collection property.
healthMonitoringSection.Rules.Insert(1, _
new RuleSettings("All Errors Default2", _
"All Errors", "EventLogProvider"))
' Display contents of the Rules collection property
Console.WriteLine( _
"Rules Collection contains {0} values:", healthMonitoringSection.Rules.Count)
' Display all elements.
For i As System.Int32 = 0 To healthMonitoringSection.Rules.Count -1
ruleSetting = healthMonitoringSection.Rules(i)
Dim name As String = ruleSetting.Name
Dim eventName As String = ruleSetting.EventName
Dim provider As String = ruleSetting.Provider
Dim profile As String = ruleSetting.Profile
Dim minInstances As Integer = ruleSetting.MinInstances
Dim maxLimit As Integer = ruleSetting.MaxLimit
Dim minInterval As TimeSpan = ruleSetting.MinInterval
Dim custom As String = ruleSetting.Custom
Dim item As String = "Name='" & name & "', EventName='" & eventName & _
"', Provider = '" & provider & "', Profile = '" & profile & _
"', MinInstances = '" & minInstances & "', MaxLimit = '" & maxLimit & _
"', MinInterval = '" & minInterval.ToString() & "', Custom = '" & custom & "'"
Console.WriteLine(" Item {0}: {1}", i, item)
Next
' See if the Rules collection property contains the RuleSettings 'All Errors Default'.
Console.WriteLine("EventMappings contains 'All Errors Default': {0}.", _
healthMonitoringSection.Rules.Contains("All Errors Default"))
' Get the index of the 'All Errors Default' RuleSettings in the Rules collection property.
Console.WriteLine("EventMappings index for 'All Errors Default': {0}.", _
healthMonitoringSection.Rules.IndexOf("All Errors Default"))
' Get a named RuleSettings
ruleSetting = healthMonitoringSection.Rules("All Errors Default")
' Remove a RuleSettings object from the Rules collection property.
healthMonitoringSection.Rules.Remove("All Errors Default")
' Remove a RuleSettings object from the Rules collection property.
healthMonitoringSection.Rules.RemoveAt(0)
' Clear all RuleSettings object from the Rules collection property.
healthMonitoringSection.Rules.Clear()
설명
RuleSettings 개체는 이벤트 규칙을 정의 하는 데 사용 됩니다.RuleSettings objects are used to define event rules.
생성자
RuleSettingsCollection() |
RuleSettingsCollection 클래스의 새 인스턴스를 초기화합니다.Initializes a new instance of the RuleSettingsCollection class. |
속성
AddElementName |
파생 클래스에서 재정의될 때 ConfigurationElement의 추가 작업과 연결할 ConfigurationElementCollection의 이름을 가져오거나 설정합니다.Gets or sets the name of the ConfigurationElement to associate with the add operation in the ConfigurationElementCollection when overridden in a derived class. (다음에서 상속됨 ConfigurationElementCollection) |
ClearElementName |
파생 클래스에서 재정의될 때 ConfigurationElement의 지우기 작업과 연결할 ConfigurationElementCollection의 이름을 가져오거나 설정합니다.Gets or sets the name for the ConfigurationElement to associate with the clear operation in the ConfigurationElementCollection when overridden in a derived class. (다음에서 상속됨 ConfigurationElementCollection) |
CollectionType |
ConfigurationElementCollection의 형식을 가져옵니다.Gets the type of the ConfigurationElementCollection. (다음에서 상속됨 ConfigurationElementCollection) |
Count |
컬렉션의 요소 수를 가져옵니다.Gets the number of elements in the collection. (다음에서 상속됨 ConfigurationElementCollection) |
CurrentConfiguration |
현재 Configuration 인스턴스가 속해 있는 구성 계층 구조를 나타내는 최상위 ConfigurationElement 인스턴스에 대한 참조를 가져옵니다.Gets a reference to the top-level Configuration instance that represents the configuration hierarchy that the current ConfigurationElement instance belongs to. (다음에서 상속됨 ConfigurationElement) |
ElementInformation |
ElementInformation 개체의 사용자 지정할 수 없는 정보와 기능을 포함하는 ConfigurationElement 개체를 가져옵니다.Gets an ElementInformation object that contains the non-customizable information and functionality of the ConfigurationElement object. (다음에서 상속됨 ConfigurationElement) |
ElementName |
파생 클래스에서 재정의될 때 구성 파일에서 이 요소 컬렉션을 식별하는 데 사용되는 이름을 가져옵니다.Gets the name used to identify this collection of elements in the configuration file when overridden in a derived class. (다음에서 상속됨 ConfigurationElementCollection) |
ElementProperty |
ConfigurationElementProperty 개체 자체를 나타내는 ConfigurationElement 개체를 가져옵니다.Gets the ConfigurationElementProperty object that represents the ConfigurationElement object itself. (다음에서 상속됨 ConfigurationElement) |
EmitClear |
컬렉션이 지워졌는지 여부를 지정하는 값을 가져오거나 설정합니다.Gets or sets a value that specifies whether the collection has been cleared. (다음에서 상속됨 ConfigurationElementCollection) |
EvaluationContext |
ContextInformation 개체의 ConfigurationElement 개체를 가져옵니다.Gets the ContextInformation object for the ConfigurationElement object. (다음에서 상속됨 ConfigurationElement) |
HasContext |
CurrentConfiguration 속성이 |
IsSynchronized |
컬렉션에 대한 액세스가 동기화되었는지 여부를 나타내는 값을 가져옵니다.Gets a value indicating whether access to the collection is synchronized. (다음에서 상속됨 ConfigurationElementCollection) |
Item[ConfigurationProperty] |
이 구성 요소의 속성이나 특성을 가져오거나 설정합니다.Gets or sets a property or attribute of this configuration element. (다음에서 상속됨 ConfigurationElement) |
Item[Int32] |
지정된 숫자 인덱스의 RuleSettings 개체를 가져옵니다.Gets the RuleSettings object at the specified numeric index. |
Item[String] |
컬렉션의 지정된 키에 따라 RuleSettings 개체를 가져옵니다.Gets the RuleSettings object based on the specified key in the collection. |
LockAllAttributesExcept |
잠긴 특성의 컬렉션을 가져옵니다.Gets the collection of locked attributes. (다음에서 상속됨 ConfigurationElement) |
LockAllElementsExcept |
잠긴 요소의 컬렉션을 가져옵니다.Gets the collection of locked elements. (다음에서 상속됨 ConfigurationElement) |
LockAttributes |
잠긴 특성의 컬렉션을 가져옵니다.Gets the collection of locked attributes. (다음에서 상속됨 ConfigurationElement) |
LockElements |
잠긴 요소의 컬렉션을 가져옵니다.Gets the collection of locked elements. (다음에서 상속됨 ConfigurationElement) |
LockItem |
요소가 잠겨 있는지 여부를 나타내는 값을 가져오거나 설정합니다.Gets or sets a value indicating whether the element is locked. (다음에서 상속됨 ConfigurationElement) |
Properties |
속성 컬렉션을 가져옵니다.Gets the collection of properties. (다음에서 상속됨 ConfigurationElement) |
RemoveElementName |
파생 클래스에서 재정의될 때 ConfigurationElement의 제거 작업과 연결할 ConfigurationElementCollection의 이름을 가져오거나 설정합니다.Gets or sets the name of the ConfigurationElement to associate with the remove operation in the ConfigurationElementCollection when overridden in a derived class. (다음에서 상속됨 ConfigurationElementCollection) |
SyncRoot |
ConfigurationElementCollection에 대한 액세스를 동기화하는 데 사용되는 개체를 가져옵니다.Gets an object used to synchronize access to the ConfigurationElementCollection. (다음에서 상속됨 ConfigurationElementCollection) |
ThrowOnDuplicate |
ConfigurationElement에 중복 ConfigurationElementCollection를 추가하려고 하면 예외가 throw되는지 여부를 나타내는 값을 가져옵니다.Gets a value indicating whether an attempt to add a duplicate ConfigurationElement to the ConfigurationElementCollection will cause an exception to be thrown. (다음에서 상속됨 ConfigurationElementCollection) |
메서드
Add(RuleSettings) |
컬렉션에 RuleSettings 개체를 추가합니다.Adds a RuleSettings object to the collection. |
BaseAdd(ConfigurationElement) |
구성 요소를 ConfigurationElementCollection에 추가합니다.Adds a configuration element to the ConfigurationElementCollection. (다음에서 상속됨 ConfigurationElementCollection) |
BaseAdd(ConfigurationElement, Boolean) |
구성 요소를 구성 요소 컬렉션에 추가합니다.Adds a configuration element to the configuration element collection. (다음에서 상속됨 ConfigurationElementCollection) |
BaseAdd(Int32, ConfigurationElement) |
구성 요소를 구성 요소 컬렉션에 추가합니다.Adds a configuration element to the configuration element collection. (다음에서 상속됨 ConfigurationElementCollection) |
BaseClear() |
컬렉션에서 구성 요소 개체를 모두 제거합니다.Removes all configuration element objects from the collection. (다음에서 상속됨 ConfigurationElementCollection) |
BaseGet(Int32) |
지정된 인덱스 위치에 있는 구성 요소를 가져옵니다.Gets the configuration element at the specified index location. (다음에서 상속됨 ConfigurationElementCollection) |
BaseGet(Object) |
지정된 키가 있는 구성 요소를 반환합니다.Returns the configuration element with the specified key. (다음에서 상속됨 ConfigurationElementCollection) |
BaseGetAllKeys() |
ConfigurationElementCollection에 포함된 모든 구성 요소의 키 배열을 반환합니다.Returns an array of the keys for all of the configuration elements contained in the ConfigurationElementCollection. (다음에서 상속됨 ConfigurationElementCollection) |
BaseGetKey(Int32) |
지정된 인덱스 위치에 있는 ConfigurationElement의 키를 가져옵니다.Gets the key for the ConfigurationElement at the specified index location. (다음에서 상속됨 ConfigurationElementCollection) |
BaseIndexOf(ConfigurationElement) |
지정된 ConfigurationElement의 인덱스를 나타냅니다.Indicates the index of the specified ConfigurationElement. (다음에서 상속됨 ConfigurationElementCollection) |
BaseIsRemoved(Object) |
지정된 키가 있는 ConfigurationElement가 ConfigurationElementCollection에서 제거되었는지 여부를 나타냅니다.Indicates whether the ConfigurationElement with the specified key has been removed from the ConfigurationElementCollection. (다음에서 상속됨 ConfigurationElementCollection) |
BaseRemove(Object) |
컬렉션에서 ConfigurationElement를 제거합니다.Removes a ConfigurationElement from the collection. (다음에서 상속됨 ConfigurationElementCollection) |
BaseRemoveAt(Int32) |
지정된 인덱스 위치에서 ConfigurationElement를 제거합니다.Removes the ConfigurationElement at the specified index location. (다음에서 상속됨 ConfigurationElementCollection) |
Clear() |
컬렉션에서 RuleSettings 개체를 모두 제거합니다.Removes all RuleSettings objects from the collection. |
Contains(String) |
컬렉션에 지정된 이름의 RuleSettings 개체가 있으면 |
CopyTo(ConfigurationElement[], Int32) |
ConfigurationElementCollection의 내용을 배열에 복사합니다.Copies the contents of the ConfigurationElementCollection to an array. (다음에서 상속됨 ConfigurationElementCollection) |
CreateNewElement() |
파생 클래스에서 재정의할 때 새 ConfigurationElement를 만듭니다.When overridden in a derived class, creates a new ConfigurationElement. (다음에서 상속됨 ConfigurationElementCollection) |
CreateNewElement(String) |
파생 클래스에서 재정의될 때 새 ConfigurationElement를 만듭니다.Creates a new ConfigurationElement when overridden in a derived class. (다음에서 상속됨 ConfigurationElementCollection) |
DeserializeElement(XmlReader, Boolean) |
구성 파일에서 XML을 읽습니다.Reads XML from the configuration file. (다음에서 상속됨 ConfigurationElement) |
Equals(Object) |
ConfigurationElementCollection을 지정된 개체와 비교합니다.Compares the ConfigurationElementCollection to the specified object. (다음에서 상속됨 ConfigurationElementCollection) |
GetElementKey(ConfigurationElement) |
파생 클래스에서 재정의될 때 지정된 구성 요소의 요소 키를 가져옵니다.Gets the element key for a specified configuration element when overridden in a derived class. (다음에서 상속됨 ConfigurationElementCollection) |
GetEnumerator() |
IEnumerator을 반복하는 데 사용되는 ConfigurationElementCollection를 가져옵니다.Gets an IEnumerator which is used to iterate through the ConfigurationElementCollection. (다음에서 상속됨 ConfigurationElementCollection) |
GetHashCode() |
ConfigurationElementCollection 인스턴스를 나타내는 고유 값을 가져옵니다.Gets a unique value representing the ConfigurationElementCollection instance. (다음에서 상속됨 ConfigurationElementCollection) |
GetTransformedAssemblyString(String) |
지정된 어셈블리 이름의 변환된 버전을 반환합니다.Returns the transformed version of the specified assembly name. (다음에서 상속됨 ConfigurationElement) |
GetTransformedTypeString(String) |
지정된 형식 이름의 변환된 버전을 반환합니다.Returns the transformed version of the specified type name. (다음에서 상속됨 ConfigurationElement) |
GetType() |
현재 인스턴스의 Type을 가져옵니다.Gets the Type of the current instance. (다음에서 상속됨 Object) |
IndexOf(String) |
지정된 이름을 가지는 RuleSettings 개체 컬렉션의 인덱스를 찾습니다.Finds the index of a RuleSettings object in the collection with the specified name. |
Init() |
ConfigurationElement 개체를 초기 상태로 설정합니다.Sets the ConfigurationElement object to its initial state. (다음에서 상속됨 ConfigurationElement) |
InitializeDefault() |
ConfigurationElement 개체 값의 기본 집합을 초기화하는 데 사용됩니다.Used to initialize a default set of values for the ConfigurationElement object. (다음에서 상속됨 ConfigurationElement) |
Insert(Int32, RuleSettings) |
지정된 RuleSettings 개체를 컬렉션의 지정된 인덱스 지점에 추가합니다.Adds the specified RuleSettings object to the specified index point in the collection. |
IsElementName(String) |
지정된 ConfigurationElement가 ConfigurationElementCollection에 있는지 여부를 나타냅니다.Indicates whether the specified ConfigurationElement exists in the ConfigurationElementCollection. (다음에서 상속됨 ConfigurationElementCollection) |
IsElementRemovable(ConfigurationElement) |
지정한 ConfigurationElement를 ConfigurationElementCollection에서 제거할 수 있는지 여부를 나타냅니다.Indicates whether the specified ConfigurationElement can be removed from the ConfigurationElementCollection. (다음에서 상속됨 ConfigurationElementCollection) |
IsModified() |
파생 클래스에서 재정의될 때 이 ConfigurationElementCollection이 마지막으로 저장되거나 로드된 후 수정되었는지 여부를 나타냅니다.Indicates whether this ConfigurationElementCollection has been modified since it was last saved or loaded when overridden in a derived class. (다음에서 상속됨 ConfigurationElementCollection) |
IsReadOnly() |
ConfigurationElementCollection 개체가 읽기 전용인지 여부를 나타냅니다.Indicates whether the ConfigurationElementCollection object is read only. (다음에서 상속됨 ConfigurationElementCollection) |
ListErrors(IList) |
이 ConfigurationElement 개체와 모든 하위 요소의 잘못된 속성 오류를 전달된 목록에 추가합니다.Adds the invalid-property errors in this ConfigurationElement object, and in all subelements, to the passed list. (다음에서 상속됨 ConfigurationElement) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다.Creates a shallow copy of the current Object. (다음에서 상속됨 Object) |
OnDeserializeUnrecognizedAttribute(String, String) |
deserialize하는 동안 알 수 없는 특성을 발견했는지 여부를 나타내는 값을 가져옵니다.Gets a value indicating whether an unknown attribute is encountered during deserialization. (다음에서 상속됨 ConfigurationElement) |
OnDeserializeUnrecognizedElement(String, XmlReader) |
구성 시스템에서 예외를 throw하도록 합니다.Causes the configuration system to throw an exception. (다음에서 상속됨 ConfigurationElementCollection) |
OnRequiredPropertyNotFound(String) |
필수 속성이 없으면 예외를 throw합니다.Throws an exception when a required property is not found. (다음에서 상속됨 ConfigurationElement) |
PostDeserialize() |
deserialization 후에 호출됩니다.Called after deserialization. (다음에서 상속됨 ConfigurationElement) |
PreSerialize(XmlWriter) |
serialization 전에 호출됩니다.Called before serialization. (다음에서 상속됨 ConfigurationElement) |
Remove(String) |
컬렉션에서 RuleSettings 개체를 제거합니다.Removes a RuleSettings object from the collection. |
RemoveAt(Int32) |
컬렉션에서 지정된 인덱스 위치에 있는 RuleSettings 개체를 제거합니다.Removes a RuleSettings object at the specified index location from the collection. |
Reset(ConfigurationElement) |
파생 클래스에서 재정의될 때 ConfigurationElementCollection을 수정되지 않은 상태로 다시 설정합니다.Resets the ConfigurationElementCollection to its unmodified state when overridden in a derived class. (다음에서 상속됨 ConfigurationElementCollection) |
ResetModified() |
파생 클래스에서 재정의될 때 IsModified() 속성의 값을 |
SerializeElement(XmlWriter, Boolean) |
파생 클래스에서 재정의될 때 구성 파일의 XML 요소에 구성 데이터를 씁니다.Writes the configuration data to an XML element in the configuration file when overridden in a derived class. (다음에서 상속됨 ConfigurationElementCollection) |
SerializeToXmlElement(XmlWriter, String) |
파생 클래스에서 구현될 때 구성 요소의 외부 태그를 구성 파일에 씁니다.Writes the outer tags of this configuration element to the configuration file when implemented in a derived class. (다음에서 상속됨 ConfigurationElement) |
SetPropertyValue(ConfigurationProperty, Object, Boolean) |
속성을 지정된 값으로 설정합니다.Sets a property to the specified value. (다음에서 상속됨 ConfigurationElement) |
SetReadOnly() |
IsReadOnly() 개체와 모든 하위 요소에 대해 ConfigurationElementCollection 속성을 설정합니다.Sets the IsReadOnly() property for the ConfigurationElementCollection object and for all sub-elements. (다음에서 상속됨 ConfigurationElementCollection) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다.Returns a string that represents the current object. (다음에서 상속됨 Object) |
Unmerge(ConfigurationElement, ConfigurationElement, ConfigurationSaveMode) |
구성 계층 구조의 여러 수준에서 구성 정보를 병합한 결과를 되돌립니다.Reverses the effect of merging configuration information from different levels of the configuration hierarchy. (다음에서 상속됨 ConfigurationElementCollection) |
명시적 인터페이스 구현
ICollection.CopyTo(Array, Int32) |
ConfigurationElementCollection을 배열에 복사합니다.Copies the ConfigurationElementCollection to an array. (다음에서 상속됨 ConfigurationElementCollection) |
확장 메서드
Cast<TResult>(IEnumerable) |
IEnumerable의 요소를 지정된 형식으로 캐스팅합니다.Casts the elements of an IEnumerable to the specified type. |
OfType<TResult>(IEnumerable) |
지정된 형식에 따라 IEnumerable의 요소를 필터링합니다.Filters the elements of an IEnumerable based on a specified type. |
AsParallel(IEnumerable) |
쿼리를 병렬화할 수 있도록 합니다.Enables parallelization of a query. |
AsQueryable(IEnumerable) |
IEnumerable을 IQueryable로 변환합니다.Converts an IEnumerable to an IQueryable. |