ISymbolReader.GetNextMethod Method

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

'Declaration
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
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(
    methodId : uint, 
    methodName : String, 
    undecoratedMethodName : String, 
    className : String, 
    namespaceName : String, 
    lines : IList<BlockLineRange>
) : boolean

Parameters

  • methodId
    Type: UInt32%

    (Output) The ID for the method.

  • methodName
    Type: String%

    (Output) The method name.

  • undecoratedMethodName
    Type: String%

    (Output) The undecorated method name.

  • className
    Type: String%

    (Output) The class name for the method.

  • namespaceName
    Type: String%

    (Output) The namespace name for the method.

Return Value

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

.NET Framework Security

See Also

Reference

ISymbolReader Interface

Microsoft.VisualStudio.Coverage.Analysis Namespace

BlockLineRange