 | QueryResultReferencesWithName Method |
Gets all the references with the provided name from the query result.
Namespace: Aml.Engine.ServicesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic static IEnumerable<CAEXBasicObject> ReferencesWithName(
this ILookup<string, ICAEXReference> queryResult,
string name
)
<ExtensionAttribute>
Public Shared Function ReferencesWithName (
queryResult As ILookup(Of String, ICAEXReference),
name As String
) As IEnumerable(Of CAEXBasicObject)
public:
[ExtensionAttribute]
static IEnumerable<CAEXBasicObject^>^ ReferencesWithName(
ILookup<String^, ICAEXReference^>^ queryResult,
String^ name
)
Parameters
- queryResult ILookupString, ICAEXReference
- The queryResult.
- name String
- The name.
Return Value
IEnumerableCAEXBasicObjectAn enumeration of all references with the provided name in the query result.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
ILookupString,
ICAEXReference. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also