コード例 #1
0
        // Token: 0x06001F54 RID: 8020 RVA: 0x000B486C File Offset: 0x000B2A6C
        private bool RenderConversationSubject(TextWriter writer)
        {
            string itemProperty = this.DataSource.GetItemProperty <string>(ConversationItemSchema.ConversationTopic, string.Empty);

            Utilities.HtmlEncode(ConversationUtilities.MaskConversationSubject(itemProperty), writer);
            return(true);
        }
コード例 #2
0
        protected void RenderConversationTopic()
        {
            string text = string.Empty;

            if (ConversationUtilities.IsSmsConversation(this.conversation))
            {
                text = ConversationUtilities.GenerateSmsConversationTitle(this.sentItemsFolderId, this.conversation);
            }
            if (string.IsNullOrEmpty(text))
            {
                text = this.conversation.Topic;
            }
            Utilities.SanitizeHtmlEncode(ConversationUtilities.MaskConversationSubject(text), base.Response.Output);
        }