Share via


ISymbolReader.GetNextMethod Method (UInt32, String, String, String, String, IList<BlockLineRange>)

 

Returns a value that indicates whether the next method was returned from the provided list of code blocks. 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

bool GetNextMethod(
    out uint methodId,
    out string methodName,
    out string undecoratedMethodName,
    out string className,
    out string namespaceName,
    IList<BlockLineRange> lines
)
bool GetNextMethod(
    [OutAttribute] unsigned int% methodId,
    [OutAttribute] String^% methodName,
    [OutAttribute] String^% undecoratedMethodName,
    [OutAttribute] String^% className,
    [OutAttribute] String^% namespaceName,
    IList<BlockLineRange>^ lines
)
abstract GetNextMethod : 
        methodId:uint32 byref *
        methodName:string byref *
        undecoratedMethodName:string byref *
        className:string byref *
        namespaceName:string byref *
        lines:IList<BlockLineRange> -> bool
Function GetNextMethod (
    <OutAttribute> ByRef methodId As UInteger,
    <OutAttribute> ByRef methodName As String,
    <OutAttribute> ByRef undecoratedMethodName As String,
    <OutAttribute> ByRef className As String,
    <OutAttribute> ByRef namespaceName As String,
    lines As IList(Of BlockLineRange)
) As Boolean

Parameters

  • undecoratedMethodName
    Type: System.String

    (Output) The undecorated method name.

  • className
    Type: System.String

    (Output) The class name for the method.

  • namespaceName
    Type: System.String

    (Output) The namespace name for the method.

Return Value

Type: System.Boolean

true if the method was successfully returned; otherwise, false.

See Also

BlockLineRange
ISymbolReader Interface
Microsoft.VisualStudio.Coverage.Analysis Namespace

Return to top