public RuntimeEmbedField(IEmbedField f) { field = new EmbedFieldBuilder(); field.Name = f.Name; field.Value = f.Value; field.IsInline = f.IsInline; }
public IDiscordEmbed AddField(IEmbedField field) { embed.AddField(x => { x.Name = field.Name; x.Value = field.Value; x.IsInline = field.IsInline; }); return(this); }
public IDiscordEmbed AddField(IEmbedField field) { throw new NotImplementedException(); }
public void AddField(IEmbedField field) { fields.Add(field); }
public void InsertField(int index, IEmbedField field) { fields.Insert(index, field); }