Example #1
0
 /// <summary>
 ///  retrieves the string data associated with the specified tag
 /// </summary>
 public string GetStringTag(string s)
 {
     return(TagUtils.GetStringTag(TagData, s));
 }
Example #2
0
 /// <summary>
 /// retrieves the character data associated with the specified tag
 /// </summary>
 public char?GetCharTag(string s)
 {
     return(TagUtils.GetCharTag(TagData, s));
 }
Example #3
0
 /// <summary>
 /// retrieves the integer data associated with the specified tag
 /// </summary>
 public int?GetIntTag(string s)
 {
     return(TagUtils.GetIntTag(TagData, s));
 }
Example #4
0
 /// <summary>
 ///  Update Int Tag only
 /// </summary>
 public void UpdateIntTagData(string s, int value, bool addIfNotFound = false)
 {
     bool replaced = TagUtils.ReplaceOrAddIntTag(ref TagData, s, value, addIfNotFound);
 }