Beispiel #1
0
 /// <summary>
 /// Sets the value of an block attribute key in memory. Once values have been set, use the <see cref="SaveAttributeValues(int?)" /> method to save all values to database
 /// </summary>
 /// <param name="key">A <see cref="System.String"/> representing the block attribute's key name.</param>
 /// <param name="value">A <see cref="System.String"/> representing the value of the attribute.</param>
 public void SetAttributeValue(string key, string value)
 {
     if (_blockCache != null)
     {
         _blockCache.SetAttributeValue(key, value);
     }
 }