Example #1
0
 /// <summary>
 /// Add an attribute object.
 /// </summary>
 /// <param name="attribute">The attribute to add.</param>
 public void Add(AlpcMessageAttribute attribute)
 {
     _attributes.Add(attribute.AttributeFlag, attribute);
 }
Example #2
0
 /// <summary>
 /// Remove an attribute object.
 /// </summary>
 /// <param name="attribute">The attribute to remove.</param>
 public void Remove(AlpcMessageAttribute attribute)
 {
     _attributes.Remove(attribute.AttributeFlag);
 }