DependencyFilter Delegate

Definition

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)

Applies to