MissingFileCallback Delegate

Represents a delegate for a method that attempts to find and return the correct path of a file that was not found by the calling method. This class and its members are reserved for internal use and are not intended to be used in your code.

Namespace:  Microsoft.VisualStudio.Coverage.Analysis
Assembly:  Microsoft.VisualStudio.Coverage.Analysis (in Microsoft.VisualStudio.Coverage.Analysis.dll)

Syntax

'Declaration
Public Delegate Function MissingFileCallback ( _
    fileName As String, _
    <OutAttribute> ByRef actualPath As String _
) As Boolean
public delegate bool MissingFileCallback(
    string fileName,
    out string actualPath
)
public delegate bool MissingFileCallback(
    String^ fileName, 
    [OutAttribute] String^% actualPath
)
type MissingFileCallback = 
    delegate of 
        fileName:string * 
        actualPath:string byref -> bool
JScript does not support delegates.

Parameters

  • actualPath
    Type: System.String%
    (Output) The actual path of the file, if found.

Return Value

Type: System.Boolean
true if the missing file was found; otherwise, false.

See Also

Reference

Microsoft.VisualStudio.Coverage.Analysis Namespace

CreateFromFile