I have a SPList
which is audience aware and I need to parse it's audiences from a SPListItem
.
string Audiences;
public Class1(SPListItem item)
{
this.Audiences = item[FieldId.AudienceTargeting] as string;
}
I've come to this so far. I've been searching how to parse each audience from the item but I couldn't find much help.
Does someone know to do that?