|
terraria-cpp2il v1.4.4.9
Terraria mobile dump, with CallAnalysis (see source code). Dump with reconstucted method: https://infinitynichto.github.io/terraria-cpp2il-methodrecon
|
Collaboration diagram for System.Net.Cookie:Public Member Functions | |
| Cookie () | |
| Cookie (string name, string value) | |
| Cookie (string name, string value, string path) | |
| Cookie (string name, string value, string path, string domain) | |
| override bool | Equals (object comparand) |
| override int | GetHashCode () |
| override string | ToString () |
Package Functions | |
| bool | InternalSetName (string value) |
| Cookie | Clone () |
| bool | VerifySetDefaults (CookieVariant variant, Uri uri, bool isLocalDomain, string localDomain, bool set_default, bool isThrow) |
| string | ToServerString () |
Static Package Functions | |
| static IComparer | GetComparer () |
Package Attributes | |
| bool | IsQuotedVersion |
| bool | IsQuotedDomain |
Static Package Attributes | |
| const int | MaxSupportedVersion = 1 |
| const string | CommentAttributeName = "Comment" |
| const string | CommentUrlAttributeName = "CommentURL" |
| const string | DiscardAttributeName = "Discard" |
| const string | DomainAttributeName = "Domain" |
| const string | ExpiresAttributeName = "Expires" |
| const string | MaxAgeAttributeName = "Max-Age" |
| const string | PathAttributeName = "Path" |
| const string | PortAttributeName = "Port" |
| const string | SecureAttributeName = "Secure" |
| const string | VersionAttributeName = "Version" |
| const string | HttpOnlyAttributeName = "HttpOnly" |
| const string | SeparatorLiteral = "; " |
| const string | EqualsLiteral = "=" |
| const string | QuotesLiteral = "\"" |
| const string | SpecialAttributeLiteral = "$" |
| static readonly char[] | PortSplitDelimiters |
| static readonly char[] | Reserved2Name |
| static readonly char[] | Reserved2Value |
Properties | |
| string | Comment [get, set] |
| Uri | CommentUri [get, set] |
| bool | HttpOnly [get, set] |
| bool | Discard [get, set] |
| string | Domain [get, set] |
| string | _Domain [get, set] |
| bool | DomainImplicit [get, set] |
| bool | Expired [get, set] |
| DateTime | Expires [get, set] |
| string | Name [get, set] |
| string | Path [get, set] |
| string | _Path [get, set] |
| bool | Plain [get, set] |
| string | Port [get, set] |
| int[] | PortList [get, set] |
| string | _Port [get, set] |
| bool | Secure [get, set] |
| DateTime | TimeStamp [get, set] |
| string | Value [get, set] |
| CookieVariant | Variant [get, set] |
| string | DomainKey [get, set] |
| int | Version [get, set] |
| string | _Version [get, set] |
Static Private Member Functions | |
| static bool | IsDomainEqualToHost (string domain, string host) |
| static bool | DomainCharsTest (string name) |
| static | Cookie () |
Private Attributes | |
| string | m_comment |
| Uri | m_commentUri |
| CookieVariant | m_cookieVariant |
| bool | m_discard |
| string | m_domain |
| bool | m_domain_implicit |
| DateTime | m_expires |
| string | m_name |
| string | m_path |
| bool | m_path_implicit |
| string | m_port |
| bool | m_port_implicit |
| int[] | m_port_list |
| bool | m_secure |
| bool | m_httpOnly |
| DateTime | m_timeStamp |
| string | m_value |
| int | m_version |
| string | m_domainKey |
Static Private Attributes | |
| static Comparer | staticComparer |