ParameterCollection Members
Retired Content |
---|
This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
The latest Unity Application Block information can be found at the Unity Application Block site. |
The ParameterCollection type exposes the following members.
Constructors
Name | Description | |
---|---|---|
ParameterCollection |
Construct a new ParameterCollection that wraps the given array of arguments.
|
Methods
Name | Description | |
---|---|---|
Add |
Adds to the collection. This is a read only collection, so this method always throws NotSupportedException.
|
|
Clear |
Remove all items in the collection. This collection is fixed-size, so this method always throws NotSupportedException.
|
|
Contains |
Checks to see if the collection contains the given object.
|
|
CopyTo |
Copies the contents of this collection to the given array.
|
|
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
GetEnumerator |
Gets an enumerator object to support the foreach construct.
|
|
GetHashCode | (Inherited from Object.) | |
GetParameterInfo | Overloaded. | |
GetType | (Inherited from Object.) | |
IndexOf |
Returns the index of the given object, or -1 if not found.
|
|
Insert |
Inserts a new item. This is a fixed-size collection, so this method throws NotSupportedException.
|
|
MemberwiseClone | (Inherited from Object.) | |
ParameterName |
Gets the name of a parameter based on index.
|
|
Remove |
Removes the given item. This is a fixed-size collection, so this method throws NotSupportedException.
|
|
RemoveAt |
Removes the given item. This is a fixed-size collection, so this method throws NotSupportedException.
|
|
ToString | (Inherited from Object.) |
Properties
Name | Description | |
---|---|---|
Count |
Total number of items in the collection.
|
|
IsFixedSize |
Is this collection fixed size?
|
|
IsReadOnly |
Is this collection read only?
|
|
IsSynchronized |
Is the object synchronized for thread safety?
|
|
Item | Overloaded. | |
SyncRoot |
Gets a synchronized version of this collection. WARNING: Not implemented completely, DO NOT USE THIS METHOD.
|