9 overrides of FindFirstCharacterToEncode
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
DefaultEditorTemplates.cs (1)
526
public override unsafe int
FindFirstCharacterToEncode
(char* text, int textLength)
Microsoft.AspNetCore.Razor (1)
TagHelpers\NullHtmlEncoder.cs (1)
71
public override unsafe int
FindFirstCharacterToEncode
(char* text, int textLength)
Microsoft.Extensions.WebEncoders (3)
Testing\HtmlTestEncoder.cs (1)
78
public override unsafe int
FindFirstCharacterToEncode
(char* text, int textLength)
Testing\JavaScriptTestEncoder.cs (1)
78
public override unsafe int
FindFirstCharacterToEncode
(char* text, int textLength)
Testing\UrlTestEncoder.cs (1)
78
public override unsafe int
FindFirstCharacterToEncode
(char* text, int textLength)
System.Text.Encodings.Web (3)
System\Text\Encodings\Web\DefaultHtmlEncoder.cs (1)
44
public override unsafe int
FindFirstCharacterToEncode
(char* text, int textLength)
System\Text\Encodings\Web\DefaultJavaScriptEncoder.cs (1)
56
public override unsafe int
FindFirstCharacterToEncode
(char* text, int textLength)
System\Text\Encodings\Web\DefaultUrlEncoder.cs (1)
119
public override unsafe int
FindFirstCharacterToEncode
(char* text, int textLength)
TagHelpersWebSite (1)
TagHelpers\CustomEncoderTagHelper.cs (1)
63
public override unsafe int
FindFirstCharacterToEncode
(char* text, int textLength) => -1;
2 references to FindFirstCharacterToEncode
System.Text.Encodings.Web (1)
System\Text\Encodings\Web\TextEncoder.cs (1)
545
return
FindFirstCharacterToEncode
(pText, text.Length);
System.Text.Json (1)
System\Text\Json\Writer\JsonWriterHelper.Escaping.cs (1)
71
return (encoder ?? JavaScriptEncoder.Default).
FindFirstCharacterToEncode
(ptr, value.Length);