IHtmlHelper<TModel>.Raw Method 
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Raw(Object) | Wraps HTML markup from the string representation of an Object in an HtmlString, without HTML-encoding the string representation. | 
| Raw(String) | Wraps HTML markup in an HtmlString, without HTML-encoding the specified
 | 
Raw(Object)
- Source:
- IHtmlHelperOfT.cs
Wraps HTML markup from the string representation of an Object in an HtmlString, without HTML-encoding the string representation.
public:
 Microsoft::AspNetCore::Html::IHtmlContent ^ Raw(System::Object ^ value);public Microsoft.AspNetCore.Html.IHtmlContent Raw(object value);abstract member Raw : obj -> Microsoft.AspNetCore.Html.IHtmlContentPublic Function Raw (value As Object) As IHtmlContentParameters
Returns
IHtmlContent containing the wrapped string representation.
Implements
Applies to
Raw(String)
- Source:
- IHtmlHelperOfT.cs
Wraps HTML markup in an HtmlString, without HTML-encoding the specified
value.
public:
 Microsoft::AspNetCore::Html::IHtmlContent ^ Raw(System::String ^ value);public Microsoft.AspNetCore.Html.IHtmlContent Raw(string value);abstract member Raw : string -> Microsoft.AspNetCore.Html.IHtmlContentPublic Function Raw (value As String) As IHtmlContentParameters
Returns
A new IHtmlContent containing the wrapped String.