Chain.GetEvents Method
When overridden in a derived class, gets multiple IntelliTraceEvents from a start EventToken up to but excluding an end EventToken.
Namespace: Microsoft.VisualStudio.IntelliTrace
Assembly: Microsoft.IntelliTrace.12.0.0 (in Microsoft.IntelliTrace.12.0.0.dll)
Syntax
'Declaration
Public MustOverride Function GetEvents ( _
startToken As EventToken, _
endToken As EventToken _
) As IList(Of IntelliTraceEvent)
public abstract IList<IntelliTraceEvent> GetEvents(
EventToken startToken,
EventToken endToken
)
public:
virtual IList<IntelliTraceEvent^>^ GetEvents(
EventToken startToken,
EventToken endToken
) abstract
abstract GetEvents :
startToken:EventToken *
endToken:EventToken -> IList<IntelliTraceEvent>
public abstract function GetEvents(
startToken : EventToken,
endToken : EventToken
) : IList<IntelliTraceEvent>
Parameters
startToken
Type: Microsoft.VisualStudio.IntelliTrace.EventTokenThe token in the chain to start resolving to events.
endToken
Type: Microsoft.VisualStudio.IntelliTrace.EventTokenThe token after the last event in the chain to end resolving to events.
Return Value
Type: System.Collections.Generic.IList<IntelliTraceEvent>
A list of events 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.