Class SqlStoredProcedureParameterCollection
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents a collection of stored procedure parameters.
public class SqlStoredProcedureParameterCollection : Collection<SqlStoredProcedureParameter>, IList<SqlStoredProcedureParameter>, ICollection<SqlStoredProcedureParameter>, IList, ICollection, IReadOnlyList<SqlStoredProcedureParameter>, IReadOnlyCollection<SqlStoredProcedureParameter>, IEnumerable<SqlStoredProcedureParameter>, IEnumerable
- Inheritance
-
SqlStoredProcedureParameterCollection
- Implements
- Inherited Members
Constructors
SqlStoredProcedureParameterCollection()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.SqlStoredProcedureParameterCollection class.
public SqlStoredProcedureParameterCollection()
Methods
FindByIdentifier(Guid)
Returns the parameter with the specified identifier, or null if no parameter with that identifier is found.
public SqlStoredProcedureParameter FindByIdentifier(Guid identifier)
Parameters
identifier
GuidThe identifier of the parameter to locate.
Returns
- SqlStoredProcedureParameter
The parameter with the specified identifier.
FindByName(string)
Returns the parameter with the specified name, or null if no parameter with that name is found.
public SqlStoredProcedureParameter FindByName(string name)
Parameters
name
stringThe name of the parameter to locate.
Returns
- SqlStoredProcedureParameter
The parameter with the specified name.
Sort()
Sorts the values in the collection.
public void Sort()