// Token: 0x0600201D RID: 8221 RVA: 0x000BA278 File Offset: 0x000B8478
        protected override void RenderTableCellAttributes(TextWriter writer, ColumnId columnId)
        {
            string text = null;

            if (columnId == ColumnId.MemberDisplayName)
            {
                text = this.DataSource.GetItemProperty <string>(StoreObjectSchema.DisplayName, null);
            }
            else if (columnId == ColumnId.MemberEmail)
            {
                Participant itemProperty = this.DataSource.GetItemProperty <Participant>(ContactSchema.Email1, null);
                if (itemProperty != null)
                {
                    string text2;
                    ContactUtilities.GetParticipantEmailAddress(itemProperty, out text, out text2);
                }
            }
            if (text != null)
            {
                DistributionListContents.RenderAttributes(writer, "title", text);
            }
        }
        // Token: 0x0600201C RID: 8220 RVA: 0x000BA190 File Offset: 0x000B8390
        protected override void RenderItemMetaDataExpandos(TextWriter writer)
        {
            AddressOrigin itemProperty  = this.DataSource.GetItemProperty <AddressOrigin>(ItemSchema.RecipientType, AddressOrigin.Unknown);
            int           itemProperty2 = this.DataSource.GetItemProperty <int>(RecipientSchema.EmailAddrType, 0);

            DistributionListContents.RenderAttributes(writer, "_dn", this.DataSource.GetItemProperty <string>(StoreObjectSchema.DisplayName, string.Empty));
            DistributionListContents.RenderAttributes(writer, "_em", this.DataSource.GetItemProperty <string>(ParticipantSchema.EmailAddress, string.Empty));
            DistributionListContents.RenderAttributes(writer, "_rt", this.DataSource.GetItemProperty <string>(ParticipantSchema.RoutingType, string.Empty));
            string name = "_ao";
            int    num  = (int)itemProperty;

            DistributionListContents.RenderAttributes(writer, name, num.ToString());
            if (itemProperty == AddressOrigin.Store)
            {
                DistributionListContents.RenderAttributes(writer, "_id", this.DataSource.GetItemProperty <string>(ParticipantSchema.OriginItemId, string.Empty));
                if (itemProperty2 != 0)
                {
                    DistributionListContents.RenderAttributes(writer, "_ei", itemProperty2.ToString());
                }
            }
            base.RenderItemMetaDataExpandos(writer);
        }