GetNestedValueByName(T) Method
Gets a value from the first embedded QualifiedIdentifier that matches the name
Namespace: Microsoft.Data.Tools.Model
Assembly: Microsoft.Data.Tools.Model (in Microsoft.Data.Tools.Model.dll)
Syntax
'Declaration
Public Function GetNestedValueByName(Of T) ( _
name As QualifiedName _
) As T
'Usage
Dim instance As QualifiedIdentifier
Dim name As QualifiedName
Dim returnValue As T
returnValue = instance.GetNestedValueByName(name)
public T GetNestedValueByName<T>(
QualifiedName name
)
public:
generic<typename T>
T GetNestedValueByName(
QualifiedName^ name
)
member GetNestedValueByName :
name:QualifiedName -> 'T
JScript does not support generic types and methods.
Type Parameters
- T
Parameters
- name
Type: Microsoft.Data.Tools.Model..::..QualifiedName
The name to search for
Return Value
Type: T