Método StoredProcedureParameterCollection.ItemById
Extracts a member from the StoredProcedureParameterCollection object using a system-defined, unique identifier.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
Public Function ItemById ( _
id As Integer _
) As StoredProcedureParameter
'Uso
Dim instance As StoredProcedureParameterCollection
Dim id As Integer
Dim returnValue As StoredProcedureParameter
returnValue = instance.ItemById(id)
public StoredProcedureParameter ItemById(
int id
)
public:
StoredProcedureParameter^ ItemById(
int id
)
member ItemById :
id:int -> StoredProcedureParameter
public function ItemById(
id : int
) : StoredProcedureParameter
Parâmetros
- id
Tipo: System.Int32
An Int32 value that uniquely identifies the StoredProcedureParameter object that is a member of the StoredProcedureParameterCollection object.
Valor de retorno
Tipo: Microsoft.SqlServer.Management.Smo.StoredProcedureParameter
A StoredProcedureParameter object that has the specified ID value.