ViewComponent.Content(String) Method

Definition

Returns a result which will render HTML encoded text.

public:
 Microsoft::AspNetCore::Mvc::ViewComponents::ContentViewComponentResult ^ Content(System::String ^ content);
public Microsoft.AspNetCore.Mvc.ViewComponents.ContentViewComponentResult Content (string content);
member this.Content : string -> Microsoft.AspNetCore.Mvc.ViewComponents.ContentViewComponentResult
Public Function Content (content As String) As ContentViewComponentResult

Parameters

content
String

The content, will be HTML encoded before output.

Returns

A ContentViewComponentResult.

Applies to