terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Extract()

string System.Net.CookieTokenizer.Extract ( )
inlinepackage

Definition at line 119 of file CookieTokenizer.cs.

120 {
121 string text;
122 for (;;)
123 {
124 int tokenLength = this.m_tokenLength;
125 if (tokenLength != 0)
126 {
127 string tokenStream = this.m_tokenStream;
128 int start = this.m_start;
129 text = tokenStream.Substring(start, tokenLength);
130 if (!this.m_quoted)
131 {
132 break;
133 }
134 }
135 }
136 return text.Trim();
137 }
class f__AnonymousType0<< Count > j__TPar

References j__TPar, System.Net.CookieTokenizer.m_quoted, System.Net.CookieTokenizer.m_start, System.Net.CookieTokenizer.m_tokenLength, System.Net.CookieTokenizer.m_tokenStream, System.start, and System.text.

Referenced by System.Net.CookieTokenizer.Next().