'Declaration Public Overloads Overridable Function IsItemMatching( _ ByVal item As FileSystemItem, _ ByVal applicableScope As FilterScope _ ) As FilterResult
'Usage Dim instance As Filter Dim item As FileSystemItem Dim applicableScope As FilterScope Dim value As FilterResult value = instance.IsItemMatching(item, applicableScope)
public virtual FilterResult IsItemMatching( FileSystemItem item, FilterScope applicableScope )
Parameters
- item
- The FileSystemItem object to verify.
- applicableScope
- The applicable FilterScope.
Return Value
A FilterResult value: NotApplicable if the filter's scope does not match the applicable scope; Accept if the filter matches the item; Reject otherwise.