PointScattererLinkPath.Find Method |
Searches the link path for an
IServiceProvider that matches the conditions defined by the supplied
predicate and returns the first occurrence.
Namespace:
AGI.Foundation.Communications
Assembly:
AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic IServiceProvider Find(
Predicate<IServiceProvider> match
)
Public Function Find (
match As Predicate(Of IServiceProvider)
) As IServiceProvider
public:
IServiceProvider^ Find(
Predicate<IServiceProvider^>^ match
)
member Find :
match : Predicate<IServiceProvider> -> IServiceProvider
Parameters
- match
- Type: System.Predicate<IServiceProvider>
The IServiceProvider predicate.
Return Value
Type:
IServiceProvider
The first
IServiceProvider which matches the conditions defined by the supplied predicate,
or
null if no match is found.
See Also