/// <include file='doc\WmlFormAdapter.uex' path='docs/doc[@for="WmlFormAdapter.RenderCardTag"]/*' /> 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(">"); }