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: System.UInt32%
(Output) The ID for the method.
- methodName
Type: System.String%
(Output) The method name.
- 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.
- lines
Type: System.Collections.Generic.IList<BlockLineRange>
A list of BlockLineRange objects that contain the code blocks.
Return Value
Type: System.Boolean
true if the method was successfully returned; otherwise, false.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.