Terraria v1.4.4.9
Terraria source code documentation
|
Properties | |
HeaderInfo | this[string name] [get] |
Static Private Member Functions | |
static string[] | ParseValueHelper (string value, bool isSetCookie) |
static bool | IsDuringExpiresAttributeParsing (string singleValue) |
static Hashtable | CreateHeaderHashtable () |
Static Private Attributes | |
static readonly Func< string, string[]> | s_singleParser = (string value) => new string[1] { value } |
static readonly Func< string, string[]> | s_multiParser = (string value) => ParseValueHelper(value, isSetCookie: false) |
static readonly Func< string, string[]> | s_setCookieParser = (string value) => ParseValueHelper(value, isSetCookie: true) |
static readonly HeaderInfo | s_unknownHeaderInfo = new HeaderInfo(string.Empty, requestRestricted: false, responseRestricted: false, multi: false, s_singleParser) |
static readonly Hashtable | s_headerHashTable = CreateHeaderHashtable() |
Definition at line 6 of file HeaderInfoTable.cs.