FindPredicate Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A predicate taking file name.
public delegate bool FindPredicate(ReadOnlySpan<char> % fileName);
public delegate bool FindPredicate(ref ReadOnlySpan<char> fileName);
type FindPredicate = delegate of ReadOnlySpan -> bool
Public Delegate Function FindPredicate(ByRef fileName As ReadOnlySpan(Of Char)) As Boolean
Parameters
- fileName
- ReadOnlySpan<Char>
The file name to check.