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

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
Public Delegate Function MissingFileCallback (
    fileName As String,
    <OutAttribute> ByRef actualPath As String
) As Boolean

Parameters

  • actualPath
    Type: System.String

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

Return Value

Type: System.Boolean

See Also

CreateFromFile
Microsoft.VisualStudio.Coverage.Analysis Namespace

Return to top