IMetadataCollection<T>.FindAll Method (String)
Retrieves all elements in the collection that have the specified name.
Namespace: Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly: Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)
Syntax
'Declaration
Function FindAll ( _
name As String _
) As IEnumerable(Of T)
'Usage
Dim instance As IMetadataCollection
Dim name As String
Dim returnValue As IEnumerable(Of T)
returnValue = instance.FindAll(name)
IEnumerable<T> FindAll(
string name
)
IEnumerable<T>^ FindAll(
String^ name
)
abstract FindAll :
name:string -> IEnumerable<'T>
function FindAll(
name : String
) : IEnumerable<T>
Parameters
- name
Type: System.String
The element name to find.
Return Value
Type: System.Collections.Generic.IEnumerable<T>
An enumerator over all the elements that have the specified name.