ITagAggregator<T>.GetTags Method (IMappingSpan)
Gets all the tags that overlap or are contained by the specified span of the type of the aggregator.
Namespace: Microsoft.VisualStudio.Text.Tagging
Assembly: Microsoft.VisualStudio.Text.Logic (in Microsoft.VisualStudio.Text.Logic.dll)
Syntax
'Declaration
Function GetTags ( _
span As IMappingSpan _
) As IEnumerable(Of IMappingTagSpan(Of T))
IEnumerable<IMappingTagSpan<T>> GetTags(
IMappingSpan span
)
IEnumerable<IMappingTagSpan<T>^>^ GetTags(
IMappingSpan^ span
)
abstract GetTags :
span:IMappingSpan -> IEnumerable<IMappingTagSpan<'T>>
function GetTags(
span : IMappingSpan
) : IEnumerable<IMappingTagSpan<T>>
Parameters
span
Type: Microsoft.VisualStudio.Text.IMappingSpanThe span to search.
Return Value
Type: IEnumerable<IMappingTagSpan<T>>
All the tags that overlap the region.
Remarks
The default tag aggregator lazily enumerates the tags of its ITagger<T> objects. Because of this, the ordering of the returned mapping spans cannot be predicted. If you need an ordered set of spans, you should collect the returned tag spans, after being mapped to the buffer of interest, into a sortable collection.
.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.