'Declaration Public Overloads Shared Function IsItemMatchingAll( _ ByVal item As FileSystemItem, _ ByVal filters() As Filter _ ) As Boolean
'Usage Dim item As FileSystemItem Dim filters() As Filter Dim value As Boolean value = Filter.IsItemMatchingAll(item, filters)
public static bool IsItemMatchingAll( FileSystemItem item, Filter[] filters )
Parameters
- item
- The FileSystemItem object that will be verified.
- filters
- The array of Filter objects against which item will be verified.
Return Value
true if item matches all of the provided filters; false otherwise.