UserDefinedAggregateCollection.ItemById Method
Extracts a member from the UserDefinedAggregateCollection object by using a system-defined, unique identifier.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Function ItemById ( _
id As Integer _
) As UserDefinedAggregate
'Usage
Dim instance As UserDefinedAggregateCollection
Dim id As Integer
Dim returnValue As UserDefinedAggregate
returnValue = instance.ItemById(id)
public UserDefinedAggregate ItemById(
int id
)
public:
UserDefinedAggregate^ ItemById(
int id
)
member ItemById :
id:int -> UserDefinedAggregate
public function ItemById(
id : int
) : UserDefinedAggregate
Parameters
- id
Type: System.Int32
An Int32 value that uniquely identifies the UserDefinedAggregate object that is a member of the UserDefinedAggregateCollection object.
Return Value
Type: Microsoft.SqlServer.Management.Smo.UserDefinedAggregate
A UserDefinedAggregate object that has the specified ID value.