EventChain.GetEvents Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
When overridden in a derived class, 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 MustOverride Function GetEvents ( _
startToken As EventToken, _
endToken As EventToken _
) As IList(Of ChainEvent)
'Usage
Dim instance As EventChain
Dim startToken As EventToken
Dim endToken As EventToken
Dim returnValue As IList(Of ChainEvent)
returnValue = instance.GetEvents(startToken, _
endToken)
public abstract IList<ChainEvent> GetEvents(
EventToken startToken,
EventToken endToken
)
public:
virtual IList<ChainEvent^>^ GetEvents(
EventToken startToken,
EventToken endToken
) abstract
abstract GetEvents :
startToken:EventToken *
endToken:EventToken -> IList<ChainEvent>
public abstract function GetEvents(
startToken : EventToken,
endToken : EventToken
) : IList<ChainEvent>
Parameters
- startToken
Type: Microsoft.VisualStudio.TraceLog.EventToken
The token in the chain to start resolving to points.
- endToken
Type: Microsoft.VisualStudio.TraceLog.EventToken
The token in the chain to stop resolving to points.
Return Value
Type: System.Collections.Generic.IList<ChainEvent>
.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.