DependencyFilter 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.
Dependency filter delegate. Used during TLog saves in order for tasks to selectively remove dependencies from the written graph.
public delegate bool DependencyFilter(System::String ^ fullPath);
public delegate bool DependencyFilter(string fullPath);
type DependencyFilter = delegate of string -> bool
Public Delegate Function DependencyFilter(fullPath As String) As Boolean
Parameters
- fullPath
- String
The full path to the dependency file about to be written to the compacted TLog
Return Value
If the file should actually be written to the TLog (true) or not (false)