|
| const char | QuoteChar = '"' |
| |
| const string | KeyString = "Key" |
| |
| const string | ValueString = "Value" |
| |
| const string | ServerTypeString = "__type" |
| |
| static readonly int | DataContractXsdBaseNamespaceLength = "http://schemas.datacontract.org/2004/07/".Length |
| |
| static readonly long | unixEpochTicks = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc).Ticks |
| |
| static readonly SecurityException | SecurityException = new SecurityException() |
| |
| static readonly UnicodeEncoding | ValidatingBEUTF16 = new UnicodeEncoding(bigEndian: true, byteOrderMark: false, throwOnInvalidBytes: true) |
| |
| static readonly UnicodeEncoding | ValidatingUTF16 = new UnicodeEncoding(bigEndian: false, byteOrderMark: false, throwOnInvalidBytes: true) |
| |
| static readonly UTF8Encoding | ValidatingUTF8 = new UTF8Encoding(encoderShouldEmitUTF8Identifier: false, throwOnInvalidBytes: true) |
| |
| const string | PositiveInf = "INF" |
| |
| const string | NegativeInf = "-INF" |
| |
| static readonly char[] | FloatingPointCharacters = new char[3] { '.', 'e', 'E' } |
| |
| const string | typeString = "type" |
| |
| const string | nullString = "null" |
| |
| const string | arrayString = "array" |
| |
| const string | booleanString = "boolean" |
| |
| const string | stringString = "string" |
| |
| const string | numberString = "number" |
| |
| const string | objectString = "object" |
| |
| const string | itemString = "item" |
| |
| const string | rootString = "root" |
| |
| const string | NameValueSeparatorString = ":" |
| |
| const string | DateTimeEndGuardReader = ")/" |
| |
| const string | DateTimeEndGuardWriter = ")\\/" |
| |
| const string | DateTimeStartGuardReader = "/Date(" |
| |
| const string | DateTimeStartGuardWriter = "\\/Date(" |
| |
| const string | xmlnsPrefix = "xmlns" |
| |
| const string | xmlPrefix = "xml" |
| |
| const byte | EndCollectionByte = 93 |
| |
| const char | EndCollectionChar = ']' |
| |
| const byte | EndObjectByte = 125 |
| |
| const char | EndObjectChar = '}' |
| |
| const byte | MemberSeparatorByte = 44 |
| |
| const char | MemberSeparatorChar = ',' |
| |
| const byte | NameValueSeparatorByte = 58 |
| |
| const char | NameValueSeparatorChar = ':' |
| |
| const byte | QuoteByte = 34 |
| |
| const byte | ObjectByte = 123 |
| |
| const char | ObjectChar = '{' |
| |
| const byte | CollectionByte = 91 |
| |
| const char | CollectionChar = '[' |
| |
| const char | WhitespaceChar = ' ' |
| |
| const string | serverTypeString = "__type" |
| |
| const int | maxScopeSize = 25 |
| |
| static readonly XmlDictionaryString | itemDictionaryString = new XmlDictionary().Add("item") |
| |
| static readonly XmlDictionaryString | rootDictionaryString = new XmlDictionary().Add("root") |
| |
Definition at line 7 of file JsonGlobals.cs.