System.Text.Encodings.Web.AllowedBmpCodePointsBitmap
struct AllowedBmpCodePointsBitmap
namespace System.Text.Encodings.Web
{
internal struct AllowedBmpCodePointsBitmap
{
private unsafe fixed uint Bitmap[2048];
public void AllowChar(char value);
public void ForbidChar(char value);
public void ForbidHtmlCharacters();
public void ForbidUndefinedCharacters();
public bool IsCharAllowed(char value);
public bool IsCodePointAllowed(uint value);
}
}