Exemple #1
0
 public void OnContent(Content content)
 {
     while (!builder.Append(content))
     {
         Flush();
     }
     this.LastContent = content;
 }
Exemple #2
0
        /// <inheritdoc />
        public override void Write(string value)
        {
            if (string.IsNullOrEmpty(value))
            {
                return;
            }

            ContentBuilder.Append(value);
        }