LogStreamEventChain.GetEvents Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Gets multiple points from a start token, up to but not including an end token.
Namespace: Microsoft.VisualStudio.TraceLog
Assembly: Microsoft.VisualStudio.TraceLog (in Microsoft.VisualStudio.TraceLog.dll)
Syntax
'Declaration
Public Overrides Function GetEvents ( _
startToken As EventToken, _
endToken As EventToken _
) As IList(Of ChainEvent)
'Usage
Dim instance As LogStreamEventChain
Dim startToken As EventToken
Dim endToken As EventToken
Dim returnValue As IList(Of ChainEvent)
returnValue = instance.GetEvents(startToken, _
endToken)
public override IList<ChainEvent> GetEvents(
EventToken startToken,
EventToken endToken
)
public:
virtual IList<ChainEvent^>^ GetEvents(
EventToken startToken,
EventToken endToken
) override
abstract GetEvents :
startToken:EventToken *
endToken:EventToken -> IList<ChainEvent>
override GetEvents :
startToken:EventToken *
endToken:EventToken -> IList<ChainEvent>
public override function GetEvents(
startToken : EventToken,
endToken : EventToken
) : IList<ChainEvent>
Parameters
- startToken
Type: Microsoft.VisualStudio.TraceLog.EventToken
The token in the chain at which to start getting points.
- endToken
Type: Microsoft.VisualStudio.TraceLog.EventToken
The token in the chain at which to stop getting points.
Return Value
Type: System.Collections.Generic.IList<ChainEvent>
A list of points from the chain for the given token range.
.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.