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

  • fileName
    Type: String

    The name of the file to find.

  • actualPath
    Type: String%

    (Output) The actual path of the file, if found.

Return Value

Type: Boolean

See Also

Reference

Microsoft.VisualStudio.Coverage.Analysis Namespace

CreateFromFile