IllegalCharacterFlags Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates values returned by several methods of IllegalCharacterFlags and taken as a parameter of the F:Android.Net.UrlQuerySanitizer+IllegalCharacterValueSanitizer..ctor member.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum IllegalCharacterFlags
[<System.Flags>]
type IllegalCharacterFlags =
- Inheritance
-
IllegalCharacterFlags
- Attributes
Fields
Name | Value | Description |
---|---|---|
AllIllegal | 0 | |
SpaceLegal | 1 | |
SpaceOk | 1 | Allow space (' ') characters. |
OtherWhitespaceOk | 2 | Allow whitespace characters other than space. |
AllWhitespaceOk | 3 | |
Non7BitAsciiOk | 4 | Allow characters with character codes 128 to 255. |
DquoteOk | 8 | Allow double quote characters. |
SquoteOk | 16 | Allow single quote characters. |
LtOk | 32 | Allow less-than characters. |
GtOk | 64 | Allow greater-than characters. |
AmpLegal | 128 | |
AmpOk | 128 | |
AmpAndSpaceLegal | 129 | |
PctOk | 256 | |
UrlLegal | 404 | |
UrlAndSpaceLegal | 405 | |
NulOk | 512 | |
ScriptUrlOk | 1024 | |
AllButNulAndAngleBracketsLegal | 1439 | |
AllButWhitespaceLegal | 1532 | |
AllButNulLegal | 1535 | |
AllOk | 2047 |
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.