@@ -61,17 +61,17 @@ public partial interface ITagHelperComponent
61
61
void Init ( Microsoft . AspNetCore . Razor . TagHelpers . TagHelperContext context ) ;
62
62
System . Threading . Tasks . Task ProcessAsync ( Microsoft . AspNetCore . Razor . TagHelpers . TagHelperContext context , Microsoft . AspNetCore . Razor . TagHelpers . TagHelperOutput output ) ;
63
63
}
64
- public partial class NullHtmlEncoder : System . Text . Encodings . Web . HtmlEncoder
64
+ public sealed partial class NullHtmlEncoder : System . Text . Encodings . Web . HtmlEncoder
65
65
{
66
- protected NullHtmlEncoder ( ) { }
66
+ internal NullHtmlEncoder ( ) { }
67
67
public static new Microsoft . AspNetCore . Razor . TagHelpers . NullHtmlEncoder Default { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
68
68
public override int MaxOutputCharactersPerInputCharacter { get { throw null ; } }
69
69
public override void Encode ( System . IO . TextWriter output , char [ ] value , int startIndex , int characterCount ) { }
70
70
public override void Encode ( System . IO . TextWriter output , string value , int startIndex , int characterCount ) { }
71
71
public override string Encode ( string value ) { throw null ; }
72
- public unsafe override int FindFirstCharacterToEncode ( char * text , int textLength ) { throw null ; }
72
+ [ System . Runtime . CompilerServices . MethodImpl ( System . Runtime . CompilerServices . MethodImplOptions . AggressiveInlining ) ] public unsafe override int FindFirstCharacterToEncode ( char * text , int textLength ) { throw null ; }
73
73
public unsafe override bool TryEncodeUnicodeScalar ( int unicodeScalar , char * buffer , int bufferLength , out int numberOfCharactersWritten ) { throw null ; }
74
- public override bool WillEncode ( int unicodeScalar ) { throw null ; }
74
+ [ System . Runtime . CompilerServices . MethodImpl ( System . Runtime . CompilerServices . MethodImplOptions . AggressiveInlining ) ] public override bool WillEncode ( int unicodeScalar ) { throw null ; }
75
75
}
76
76
[ System . AttributeUsageAttribute ( System . AttributeTargets . Class , AllowMultiple = false , Inherited = false ) ]
77
77
public sealed partial class OutputElementHintAttribute : System . Attribute
0 commit comments