Example #1
0
 protected internal virtual void RenderCardTag(WmlMobileTextWriter writer, IDictionary attributes)
 {
     writer.WriteBeginTag("card");
     if (attributes != null)
     {
         foreach (DictionaryEntry entry in attributes)
         {
             writer.WriteAttribute((String)entry.Key, (String)entry.Value, true);
         }
     }
     writer.WriteLine(">");
 }