// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.AspNet.Html; namespace Microsoft.AspNet.Mvc.Rendering { /// public class HtmlString : HtmlEncodedString { /// /// Returns an with empty content. /// public static readonly HtmlString Empty = new HtmlString(string.Empty); /// /// Creates a new instance of . /// /// The HTML encoded value. public HtmlString(string input) : base(input) { } } }