PropertyDescriptorCollection Methods
.NET Framework 3.5
The PropertyDescriptorCollection type exposes the following members.
| Name | Description | |
|---|---|---|
|
Add | Adds the specified PropertyDescriptor to the collection. |
|
Clear | Removes all PropertyDescriptor objects from the collection. |
|
Contains | Returns whether the collection contains the given PropertyDescriptor. |
|
CopyTo | Copies the entire collection to an array, starting at the specified index number. |
|
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
Find | Returns the PropertyDescriptor with the specified name, using a Boolean to indicate whether to ignore case. |
|
GetEnumerator | Returns an enumerator for this class. |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the type of the current instance. (Inherited from Object.) |
|
IndexOf | Returns the index of the given PropertyDescriptor. |
|
Insert | Adds the PropertyDescriptor to the collection at the specified index number. |
|
InternalSort | Overloaded. Sorts the members of this collection. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
Remove | Removes the specified PropertyDescriptor from the collection. |
|
RemoveAt | Removes the PropertyDescriptor at the specified index from the collection. |
|
Sort | Overloaded. Sorts the members of this collection. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
|
AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
|
Cast | Converts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
|
OfType | Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
| Name | Description | |
|---|---|---|
|
IDictionary.Add | Adds an element with the provided key and value to the IDictionary. |
|
IList.Add | Adds an item to the IList. |
|
IDictionary.Clear | Removes all elements from the IDictionary. |
|
IList.Clear | Removes all items from the collection. |
|
IDictionary.Contains | Determines whether the IDictionary contains an element with the specified key. |
|
IList.Contains | Determines whether the collection contains a specific value. |
|
IDictionary.GetEnumerator | Returns an enumerator for this class. |
|
IEnumerable.GetEnumerator | Returns an IEnumerator for the IDictionary. |
|
IList.IndexOf | Determines the index of a specified item in the collection. |
|
IList.Insert | Inserts an item into the collection at a specified index. |
|
IDictionary.Remove | Removes the element with the specified key from the IDictionary. |
|
IList.Remove | Removes the first occurrence of a specified value from the collection. |
|
IList.RemoveAt | Removes the item at the specified index. |