Query segments
This topic explains how to query segments. To find a specific segment, you use the PersonalizationManager
class and LINQ queries.
Find a segment by ID
To find a specific segment by ID, you use the GetSegments
method:
To find segment, you use the GetSegments
method and filter based on the Id
property. If the segment does not exist, the method returns null. To find the segment, you can also use the GetSegment
method:
Find a segment by title
To find a specific segment by its title, first, you use the GetSegments
method. Then you filter based on the Title
property:
Get all segments
To get all segments, you use the GetSegments
method without any filtering: