GetFilterCallback Delegate

This delegate type provides the ability to filter the results of a get after the server request but before the results are processed locally. See the Workspace Get() method.

Namespace:  Microsoft.TeamFoundation.VersionControl.Client
Assembly:  Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)

Syntax

'Declaration
Public Delegate Sub GetFilterCallback ( _
    workspace As Workspace, _
    operations As ILocalUpdateOperation(), _
    userData As Object _
)
public delegate void GetFilterCallback(
    Workspace workspace,
    ILocalUpdateOperation[] operations,
    Object userData
)
public delegate void GetFilterCallback(
    Workspace^ workspace, 
    array<ILocalUpdateOperation^>^ operations, 
    Object^ userData
)
type GetFilterCallback = 
    delegate of 
        workspace:Workspace * 
        operations:ILocalUpdateOperation[] * 
        userData:Object -> unit
JScript does not support delegates.

Parameters

See Also

Reference

Microsoft.TeamFoundation.VersionControl.Client Namespace