You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BWPM/WebFormApp/bin/System.Text.Encodings.Web.xml

1618 lines
85 KiB

<?xml version="1.0"?>
<doc>
<assembly>
<name>System.Text.Encodings.Web</name>
</assembly>
<members>
<member name="T:System.Text.Encodings.Web.HexUtil">
<summary>
Contains helpers for dealing with byte-hex char conversions.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.HexUtil.UInt32LsbToHexDigit(System.UInt32)">
<summary>
Converts a number 0 - 15 to its associated hex character '0' - 'F'.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.HexUtil.Int32LsbToHexDigit(System.Int32)">
<summary>
Converts a number 0 - 15 to its associated hex character '0' - 'F'.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.HexUtil.ByteToHexDigits(System.Byte,System.Char@,System.Char@)">
<summary>
Gets the uppercase hex-encoded form of a byte.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.HtmlEncoder">
<summary>
Represents a type used to do HTML encoding.
</summary>
</member>
<member name="P:System.Text.Encodings.Web.HtmlEncoder.Default">
<summary>
Returns a default built-in instance of <see cref="T:System.Text.Encodings.Web.HtmlEncoder"/>.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>
Creates a new instance of HtmlEncoder with provided settings.
</summary>
<param name="settings">Settings used to control how the created <see cref="T:System.Text.Encodings.Web.HtmlEncoder"/> encodes, primarily which characters to encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"/>.</returns>
</member>
<member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Unicode.UnicodeRange[])">
<summary>
Creates a new instance of HtmlEncoder specifying character to be encoded.
</summary>
<param name="allowedRanges">Set of characters that the encoder is allowed to not encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"/></returns>
<remarks>Some characters in <paramref name="allowedRanges"/> might still get encoded, i.e. this parameter is just telling the encoder what ranges it is allowed to not encode, not what characters it must not encode.</remarks>
</member>
<member name="T:System.Text.Encodings.Web.JavaScriptEncoder">
<summary>
Represents a type used to do JavaScript encoding/escaping.
</summary>
</member>
<member name="P:System.Text.Encodings.Web.JavaScriptEncoder.Default">
<summary>
Returns a default built-in instance of <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"/>.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>
Creates a new instance of JavaScriptEncoder with provided settings.
</summary>
<param name="settings">Settings used to control how the created <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"/> encodes, primarily which characters to encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"/>.</returns>
</member>
<member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Unicode.UnicodeRange[])">
<summary>
Creates a new instance of JavaScriptEncoder specifying character to be encoded.
</summary>
<param name="allowedRanges">Set of characters that the encoder is allowed to not encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"/>.</returns>
<remarks>Some characters in <paramref name="allowedRanges"/> might still get encoded, i.e. this parameter is just telling the encoder what ranges it is allowed to not encode, not what characters it must not encode.</remarks>
</member>
<member name="T:System.Text.Encodings.Web.TextEncoder">
<summary>
An abstraction representing various text encoders.
</summary>
<remarks>
TextEncoder subclasses can be used to do HTML encoding, URI encoding, and JavaScript encoding.
Instances of such subclasses can be accessed using <see cref="P:System.Text.Encodings.Web.HtmlEncoder.Default"/>, <see cref="P:System.Text.Encodings.Web.UrlEncoder.Default"/>, and <see cref="P:System.Text.Encodings.Web.JavaScriptEncoder.Default"/>.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)">
<summary>
Encodes a Unicode scalar into a buffer.
</summary>
<param name="unicodeScalar">Unicode scalar.</param>
<param name="buffer">The destination of the encoded text.</param>
<param name="bufferLength">Length of the destination <paramref name="buffer"/> in chars.</param>
<param name="numberOfCharactersWritten">Number of characters written to the <paramref name="buffer"/>.</param>
<returns>Returns false if <paramref name="bufferLength"/> is too small to fit the encoded text, otherwise returns true.</returns>
<remarks>This method is seldom called directly. One of the TextEncoder.Encode overloads should be used instead.
Implementations of <see cref="T:System.Text.Encodings.Web.TextEncoder"/> need to be thread safe and stateless.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)">
<summary>
Finds index of the first character that needs to be encoded.
</summary>
<param name="text">The text buffer to search.</param>
<param name="textLength">The number of characters in the <paramref name="text"/>.</param>
<returns></returns>
<remarks>This method is seldom called directly. It's used by higher level helper APIs.</remarks>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.WillEncode(System.Int32)">
<summary>
Determines if a given Unicode scalar will be encoded.
</summary>
<param name="unicodeScalar">Unicode scalar.</param>
<returns>Returns true if the <paramref name="unicodeScalar"/> will be encoded by this encoder, otherwise returns false.</returns>
</member>
<member name="P:System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter">
<summary>
Maximum number of characters that this encoder can generate for each input character.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.String)">
<summary>
Encodes the supplied string and returns the encoded text as a new string.
</summary>
<param name="value">String to encode.</param>
<returns>Encoded string.</returns>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String)">
<summary>
Encodes the supplied string into a <see cref="T:System.IO.TextWriter"/>.
</summary>
<param name="output">Encoded text is written to this output.</param>
<param name="value">String to be encoded.</param>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)">
<summary>
Encodes a substring into a <see cref="T:System.IO.TextWriter"/>.
</summary>
<param name="output">Encoded text is written to this output.</param>
<param name="value">String whose substring is to be encoded.</param>
<param name="startIndex">The index where the substring starts.</param>
<param name="characterCount">Number of characters in the substring.</param>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>
Encodes characters from an array into a <see cref="T:System.IO.TextWriter"/>.
</summary>
<param name="output">Encoded text is written to the output.</param>
<param name="value">Array of characters to be encoded.</param>
<param name="startIndex">The index where the substring starts.</param>
<param name="characterCount">Number of characters in the substring.</param>
</member>
<member name="T:System.Text.Encodings.Web.TextEncoderSettings">
<summary>
Represents a filter which allows only certain Unicode code points through.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor">
<summary>
Instantiates an empty filter (allows no code points through by default).
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>
Instantiates the filter by cloning the allow list of another <see cref="T:System.Text.Encodings.Web.TextEncoderSettings"/>.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Unicode.UnicodeRange[])">
<summary>
Instantiates the filter where only the character ranges specified by <paramref name="allowedRanges"/>
are allowed by the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacter(System.Char)">
<summary>
Allows the character specified by <paramref name="character"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacters(System.Char[])">
<summary>
Allows all characters specified by <paramref name="characters"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCodePoints(System.Collections.Generic.IEnumerable{System.Int32})">
<summary>
Allows all code points specified by <paramref name="codePoints"/>.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRange(System.Text.Unicode.UnicodeRange)">
<summary>
Allows all characters specified by <paramref name="range"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRanges(System.Text.Unicode.UnicodeRange[])">
<summary>
Allows all characters specified by <paramref name="ranges"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.Clear">
<summary>
Resets this settings object by disallowing all characters.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacter(System.Char)">
<summary>
Disallows the character <paramref name="character"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacters(System.Char[])">
<summary>
Disallows all characters specified by <paramref name="characters"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRange(System.Text.Unicode.UnicodeRange)">
<summary>
Disallows all characters specified by <paramref name="range"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRanges(System.Text.Unicode.UnicodeRange[])">
<summary>
Disallows all characters specified by <paramref name="ranges"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.GetAllowedCharacters">
<summary>
Retrieves the bitmap of allowed characters from this settings object.
The returned bitmap is a clone of the original bitmap to avoid unintentional modification.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.GetAllowedCodePoints">
<summary>
Gets an enumeration of all allowed code points.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.UrlEncoder">
<summary>
Represents a type used to do URL encoding.
</summary>
</member>
<member name="P:System.Text.Encodings.Web.UrlEncoder.Default">
<summary>
Returns a default built-in instance of <see cref="T:System.Text.Encodings.Web.UrlEncoder"/>.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>
Creates a new instance of UrlEncoder with provided settings.
</summary>
<param name="settings">Settings used to control how the created <see cref="T:System.Text.Encodings.Web.UrlEncoder"/> encodes, primarily which characters to encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"/>.</returns>
</member>
<member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Unicode.UnicodeRange[])">
<summary>
Creates a new instance of UrlEncoder specifying character to be encoded.
</summary>
<param name="allowedRanges">Set of characters that the encoder is allowed to not encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"/>.</returns>
<remarks>Some characters in <paramref name="allowedRanges"/> might still get encoded, i.e. this parameter is just telling the encoder what ranges it is allowed to not encode, not what characters it must not encode.</remarks>
</member>
<member name="T:System.Text.Unicode.UnicodeHelpers">
<summary>
Contains helpers for dealing with Unicode code points.
</summary>
</member>
<member name="F:System.Text.Unicode.UnicodeHelpers.UNICODE_REPLACEMENT_CHAR">
<summary>
Used for invalid Unicode sequences or other unrepresentable values.
</summary>
</member>
<member name="F:System.Text.Unicode.UnicodeHelpers.UNICODE_LAST_CODEPOINT">
<summary>
The last code point defined by the Unicode specification.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeHelpers.CreateDefinedCharacterBitmap">
<summary>
Helper method which creates a bitmap of all characters which are
defined per the Unicode specification.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeHelpers.GetDefinedCharacterBitmap">
<summary>
Returns a bitmap of all characters which are defined per version 7.0.0
of the Unicode specification.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeHelpers.GetScalarValueFromUtf16(System.Char,System.Nullable{System.Char},System.Boolean@)">
<summary>
Given a UTF-16 character stream, reads the next scalar value from the stream.
Set 'endOfString' to true if 'pChar' points to the last character in the stream.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeHelpers.GetScalarValueFromUtf16(System.Char*,System.Boolean)">
<summary>
Given a UTF-16 character stream, reads the next scalar value from the stream.
Set 'endOfString' to true if 'pChar' points to the last character in the stream.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeHelpers.GetUtf8RepresentationForScalarValue(System.UInt32)">
<summary>
Given a Unicode scalar value, returns the UTF-8 representation of the value.
The return value's bytes should be popped from the LSB.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeHelpers.IsCharacterDefined(System.Char)">
<summary>
Returns a value stating whether a character is defined per version 7.0.0
of the Unicode specification. Certain classes of characters (control chars,
private use, surrogates, some whitespace) are considered "undefined" for
our purposes.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeHelpers.IsSupplementaryCodePoint(System.Int32)">
<summary>
Determines whether the given scalar value is in the supplementary plane and thus
requires 2 characters to be represented in UTF-16 (as a surrogate pair).
</summary>
</member>
<member name="T:System.Text.Unicode.UnicodeRange">
<summary>
Represents a contiguous range of Unicode code points.
</summary>
<remarks>
Currently only the Basic Multilingual Plane is supported.
</remarks>
</member>
<member name="M:System.Text.Unicode.UnicodeRange.#ctor(System.Int32,System.Int32)">
<summary>
Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"/>.
</summary>
<param name="firstCodePoint">The first code point in the range.</param>
<param name="length">The number of code points in the range.</param>
</member>
<member name="P:System.Text.Unicode.UnicodeRange.FirstCodePoint">
<summary>
The first code point in this range.
</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRange.Length">
<summary>
The number of code points in this range.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeRange.Create(System.Char,System.Char)">
<summary>
Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"/> from a span of characters.
</summary>
<param name="firstCharacter">The first character in the range.</param>
<param name="lastCharacter">The last character in the range.</param>
<returns>The <see cref="T:System.Text.Unicode.UnicodeRange"/> representing this span.</returns>
</member>
<member name="T:System.Text.Unicode.UnicodeRanges">
<summary>
Contains predefined <see cref="T:System.Text.Unicode.UnicodeRange"/> instances which correspond to blocks
from the Unicode 7.0 specification.
</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.None">
<summary>
An empty <see cref="T:System.Text.Unicode.UnicodeRange"/>. This range contains no code points.
</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.All">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> which contains all characters in the Unicode Basic
Multilingual Plane (U+0000..U+FFFF).
</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.BasicLatin">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Basic Latin' Unicode block (U+0000..U+007F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0000.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Latin1Supplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin-1 Supplement' Unicode block (U+0080..U+00FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0080.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended-A' Unicode block (U+0100..U+017F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0100.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended-B' Unicode block (U+0180..U+024F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0180.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.IpaExtensions">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'IPA Extensions' Unicode block (U+0250..U+02AF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0250.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SpacingModifierLetters">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Spacing Modifier Letters' Unicode block (U+02B0..U+02FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U02B0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarks">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Combining Diacritical Marks' Unicode block (U+0300..U+036F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0300.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GreekandCoptic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Greek and Coptic' Unicode block (U+0370..U+03FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0370.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Cyrillic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cyrillic' Unicode block (U+0400..U+04FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0400.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CyrillicSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cyrillic Supplement' Unicode block (U+0500..U+052F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0500.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Armenian">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Armenian' Unicode block (U+0530..U+058F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0530.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Hebrew">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hebrew' Unicode block (U+0590..U+05FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0590.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Arabic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic' Unicode block (U+0600..U+06FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0600.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Syriac">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Syriac' Unicode block (U+0700..U+074F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0700.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic Supplement' Unicode block (U+0750..U+077F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0750.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Thaana">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Thaana' Unicode block (U+0780..U+07BF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0780.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.NKo">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'NKo' Unicode block (U+07C0..U+07FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U07C0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Samaritan">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Samaritan' Unicode block (U+0800..U+083F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0800.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Mandaic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Mandaic' Unicode block (U+0840..U+085F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0840.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic Extended-A' Unicode block (U+08A0..U+08FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U08A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Devanagari">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Devanagari' Unicode block (U+0900..U+097F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0900.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Bengali">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Bengali' Unicode block (U+0980..U+09FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0980.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Gurmukhi">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Gurmukhi' Unicode block (U+0A00..U+0A7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0A00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Gujarati">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Gujarati' Unicode block (U+0A80..U+0AFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0A80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Oriya">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Oriya' Unicode block (U+0B00..U+0B7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0B00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tamil">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tamil' Unicode block (U+0B80..U+0BFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0B80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Telugu">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Telugu' Unicode block (U+0C00..U+0C7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0C00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Kannada">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Kannada' Unicode block (U+0C80..U+0CFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0C80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Malayalam">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Malayalam' Unicode block (U+0D00..U+0D7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0D00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Sinhala">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Sinhala' Unicode block (U+0D80..U+0DFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0D80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Thai">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Thai' Unicode block (U+0E00..U+0E7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0E00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Lao">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Lao' Unicode block (U+0E80..U+0EFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0E80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tibetan">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tibetan' Unicode block (U+0F00..U+0FFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U0F00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Myanmar">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Myanmar' Unicode block (U+1000..U+109F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1000.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Georgian">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Georgian' Unicode block (U+10A0..U+10FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U10A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HangulJamo">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hangul Jamo' Unicode block (U+1100..U+11FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1100.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Ethiopic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ethiopic' Unicode block (U+1200..U+137F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1200.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.EthiopicSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ethiopic Supplement' Unicode block (U+1380..U+139F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1380.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Cherokee">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cherokee' Unicode block (U+13A0..U+13FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U13A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.UnifiedCanadianAboriginalSyllabics">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Unified Canadian Aboriginal Syllabics' Unicode block (U+1400..U+167F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1400.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Ogham">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ogham' Unicode block (U+1680..U+169F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1680.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Runic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Runic' Unicode block (U+16A0..U+16FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U16A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tagalog">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tagalog' Unicode block (U+1700..U+171F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1700.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Hanunoo">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hanunoo' Unicode block (U+1720..U+173F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1720.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Buhid">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Buhid' Unicode block (U+1740..U+175F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1740.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tagbanwa">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tagbanwa' Unicode block (U+1760..U+177F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1760.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Khmer">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Khmer' Unicode block (U+1780..U+17FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1780.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Mongolian">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Mongolian' Unicode block (U+1800..U+18AF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1800.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.UnifiedCanadianAboriginalSyllabicsExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Unified Canadian Aboriginal Syllabics Extended' Unicode block (U+18B0..U+18FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U18B0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Limbu">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Limbu' Unicode block (U+1900..U+194F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1900.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.TaiLe">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tai Le' Unicode block (U+1950..U+197F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1950.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.NewTaiLue">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'New Tai Lue' Unicode block (U+1980..U+19DF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1980.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.KhmerSymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Khmer Symbols' Unicode block (U+19E0..U+19FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U19E0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Buginese">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Buginese' Unicode block (U+1A00..U+1A1F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1A00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.TaiTham">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tai Tham' Unicode block (U+1A20..U+1AAF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1A20.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Combining Diacritical Marks Extended' Unicode block (U+1AB0..U+1AFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1AB0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Balinese">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Balinese' Unicode block (U+1B00..U+1B7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1B00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Sundanese">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Sundanese' Unicode block (U+1B80..U+1BBF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1B80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Batak">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Batak' Unicode block (U+1BC0..U+1BFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1BC0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Lepcha">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Lepcha' Unicode block (U+1C00..U+1C4F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1C00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.OlChiki">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ol Chiki' Unicode block (U+1C50..U+1C7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1C50.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SundaneseSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Sundanese Supplement' Unicode block (U+1CC0..U+1CCF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1CC0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.VedicExtensions">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Vedic Extensions' Unicode block (U+1CD0..U+1CFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1CD0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.PhoneticExtensions">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Phonetic Extensions' Unicode block (U+1D00..U+1D7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1D00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.PhoneticExtensionsSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Phonetic Extensions Supplement' Unicode block (U+1D80..U+1DBF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1D80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Combining Diacritical Marks Supplement' Unicode block (U+1DC0..U+1DFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1DC0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedAdditional">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended Additional' Unicode block (U+1E00..U+1EFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1E00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GreekExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Greek Extended' Unicode block (U+1F00..U+1FFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U1F00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GeneralPunctuation">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'General Punctuation' Unicode block (U+2000..U+206F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2000.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SuperscriptsandSubscripts">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Superscripts and Subscripts' Unicode block (U+2070..U+209F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2070.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CurrencySymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Currency Symbols' Unicode block (U+20A0..U+20CF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U20A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksforSymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Combining Diacritical Marks for Symbols' Unicode block (U+20D0..U+20FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U20D0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LetterlikeSymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Letterlike Symbols' Unicode block (U+2100..U+214F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2100.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.NumberForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Number Forms' Unicode block (U+2150..U+218F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2150.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Arrows">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arrows' Unicode block (U+2190..U+21FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2190.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MathematicalOperators">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Mathematical Operators' Unicode block (U+2200..U+22FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2200.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousTechnical">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Miscellaneous Technical' Unicode block (U+2300..U+23FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2300.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ControlPictures">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Control Pictures' Unicode block (U+2400..U+243F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2400.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.OpticalCharacterRecognition">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Optical Character Recognition' Unicode block (U+2440..U+245F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2440.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.EnclosedAlphanumerics">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Enclosed Alphanumerics' Unicode block (U+2460..U+24FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2460.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.BoxDrawing">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Box Drawing' Unicode block (U+2500..U+257F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2500.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.BlockElements">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Block Elements' Unicode block (U+2580..U+259F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2580.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GeometricShapes">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Geometric Shapes' Unicode block (U+25A0..U+25FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U25A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousSymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Miscellaneous Symbols' Unicode block (U+2600..U+26FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2600.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Dingbats">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Dingbats' Unicode block (U+2700..U+27BF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2700.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousMathematicalSymbolsA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Miscellaneous Mathematical Symbols-A' Unicode block (U+27C0..U+27EF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U27C0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SupplementalArrowsA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Supplemental Arrows-A' Unicode block (U+27F0..U+27FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U27F0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.BraillePatterns">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Braille Patterns' Unicode block (U+2800..U+28FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2800.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SupplementalArrowsB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Supplemental Arrows-B' Unicode block (U+2900..U+297F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2900.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousMathematicalSymbolsB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Miscellaneous Mathematical Symbols-B' Unicode block (U+2980..U+29FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2980.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SupplementalMathematicalOperators">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Supplemental Mathematical Operators' Unicode block (U+2A00..U+2AFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2A00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousSymbolsandArrows">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Miscellaneous Symbols and Arrows' Unicode block (U+2B00..U+2BFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2B00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Glagolitic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Glagolitic' Unicode block (U+2C00..U+2C5F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2C00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedC">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended-C' Unicode block (U+2C60..U+2C7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2C60.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Coptic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Coptic' Unicode block (U+2C80..U+2CFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2C80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GeorgianSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Georgian Supplement' Unicode block (U+2D00..U+2D2F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2D00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tifinagh">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tifinagh' Unicode block (U+2D30..U+2D7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2D30.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.EthiopicExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ethiopic Extended' Unicode block (U+2D80..U+2DDF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2D80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cyrillic Extended-A' Unicode block (U+2DE0..U+2DFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2DE0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SupplementalPunctuation">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Supplemental Punctuation' Unicode block (U+2E00..U+2E7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2E00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkRadicalsSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Radicals Supplement' Unicode block (U+2E80..U+2EFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2E80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.KangxiRadicals">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Kangxi Radicals' Unicode block (U+2F00..U+2FDF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2F00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.IdeographicDescriptionCharacters">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ideographic Description Characters' Unicode block (U+2FF0..U+2FFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U2FF0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkSymbolsandPunctuation">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Symbols and Punctuation' Unicode block (U+3000..U+303F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U3000.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Hiragana">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hiragana' Unicode block (U+3040..U+309F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U3040.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Katakana">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Katakana' Unicode block (U+30A0..U+30FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U30A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Bopomofo">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Bopomofo' Unicode block (U+3100..U+312F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U3100.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HangulCompatibilityJamo">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hangul Compatibility Jamo' Unicode block (U+3130..U+318F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U3130.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Kanbun">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Kanbun' Unicode block (U+3190..U+319F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U3190.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.BopomofoExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Bopomofo Extended' Unicode block (U+31A0..U+31BF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U31A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkStrokes">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Strokes' Unicode block (U+31C0..U+31EF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U31C0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.KatakanaPhoneticExtensions">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Katakana Phonetic Extensions' Unicode block (U+31F0..U+31FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U31F0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.EnclosedCjkLettersandMonths">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Enclosed CJK Letters and Months' Unicode block (U+3200..U+32FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U3200.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibility">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Compatibility' Unicode block (U+3300..U+33FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U3300.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkUnifiedIdeographsExtensionA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Unified Ideographs Extension A' Unicode block (U+3400..U+4DBF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U3400.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.YijingHexagramSymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Yijing Hexagram Symbols' Unicode block (U+4DC0..U+4DFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U4DC0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkUnifiedIdeographs">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Unified Ideographs' Unicode block (U+4E00..U+9FFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/U4E00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.YiSyllables">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Yi Syllables' Unicode block (U+A000..U+A48F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA000.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.YiRadicals">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Yi Radicals' Unicode block (U+A490..U+A4CF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA490.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Lisu">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Lisu' Unicode block (U+A4D0..U+A4FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA4D0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Vai">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Vai' Unicode block (U+A500..U+A63F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA500.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cyrillic Extended-B' Unicode block (U+A640..U+A69F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA640.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Bamum">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Bamum' Unicode block (U+A6A0..U+A6FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA6A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ModifierToneLetters">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Modifier Tone Letters' Unicode block (U+A700..U+A71F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA700.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedD">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended-D' Unicode block (U+A720..U+A7FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA720.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SylotiNagri">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Syloti Nagri' Unicode block (U+A800..U+A82F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA800.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CommonIndicNumberForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Common Indic Number Forms' Unicode block (U+A830..U+A83F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA830.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Phagspa">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Phags-pa' Unicode block (U+A840..U+A87F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA840.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Saurashtra">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Saurashtra' Unicode block (U+A880..U+A8DF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA880.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.DevanagariExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Devanagari Extended' Unicode block (U+A8E0..U+A8FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA8E0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.KayahLi">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Kayah Li' Unicode block (U+A900..U+A92F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA900.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Rejang">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Rejang' Unicode block (U+A930..U+A95F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA930.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HangulJamoExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hangul Jamo Extended-A' Unicode block (U+A960..U+A97F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA960.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Javanese">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Javanese' Unicode block (U+A980..U+A9DF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA980.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MyanmarExtendedB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Myanmar Extended-B' Unicode block (U+A9E0..U+A9FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UA9E0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Cham">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cham' Unicode block (U+AA00..U+AA5F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UAA00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MyanmarExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Myanmar Extended-A' Unicode block (U+AA60..U+AA7F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UAA60.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.TaiViet">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tai Viet' Unicode block (U+AA80..U+AADF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UAA80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MeeteiMayekExtensions">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Meetei Mayek Extensions' Unicode block (U+AAE0..U+AAFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UAAE0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.EthiopicExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ethiopic Extended-A' Unicode block (U+AB00..U+AB2F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UAB00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedE">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended-E' Unicode block (U+AB30..U+AB6F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UAB30.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CherokeeSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cherokee Supplement' Unicode block (U+AB70..U+ABBF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UAB70.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MeeteiMayek">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Meetei Mayek' Unicode block (U+ABC0..U+ABFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UABC0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HangulSyllables">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hangul Syllables' Unicode block (U+AC00..U+D7AF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UAC00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HangulJamoExtendedB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hangul Jamo Extended-B' Unicode block (U+D7B0..U+D7FF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UD7B0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibilityIdeographs">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Compatibility Ideographs' Unicode block (U+F900..U+FAFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UF900.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.AlphabeticPresentationForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Alphabetic Presentation Forms' Unicode block (U+FB00..U+FB4F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UFB00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic Presentation Forms-A' Unicode block (U+FB50..U+FDFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UFB50.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.VariationSelectors">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Variation Selectors' Unicode block (U+FE00..U+FE0F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UFE00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.VerticalForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Vertical Forms' Unicode block (U+FE10..U+FE1F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UFE10.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CombiningHalfMarks">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Combining Half Marks' Unicode block (U+FE20..U+FE2F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UFE20.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibilityForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Compatibility Forms' Unicode block (U+FE30..U+FE4F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UFE30.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SmallFormVariants">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Small Form Variants' Unicode block (U+FE50..U+FE6F).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UFE50.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic Presentation Forms-B' Unicode block (U+FE70..U+FEFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UFE70.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HalfwidthandFullwidthForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Halfwidth and Fullwidth Forms' Unicode block (U+FF00..U+FFEF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UFF00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Specials">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Specials' Unicode block (U+FFF0..U+FFFF).
</summary>
<remarks>
See http://www.unicode.org/charts/PDF/UFFF0.pdf for the full set of characters in this block.
</remarks>
</member>
</members>
</doc>