Have a class which lists tags for a member:
Public Class MemberTagListThe IsDirty property on the list is being set correctly when I have new item to add to the list. However, if no items are set, I still need the list to be dirty. (For instance they had tags in their account, but are now removing them)
How can I force TextToList to set the IsDirty flag to true?
This is how I'm using it:
Set(ByVal TagListText As String)
CanWriteProperty(True)
If (BioTagsText <> TagListText) Then
_BioTags = Tags.MemberTagList.TextToList(_Id, TagListText)
PropertyHasChanged()
End If
End Set
Then in the update, I check to see if the list is dirty:
If (_BioTags.IsDirty) ThenCopyright (c) Marimer LLC