Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CheckSetIsSimpleFlag()

void System.UriParser.CheckSetIsSimpleFlag ( )
inlinepackageinherited

Definition at line 299 of file UriParser.cs.

300 {
301 Type type = GetType();
302 if (type == typeof(GenericUriParser) || type == typeof(HttpStyleUriParser) || type == typeof(FtpStyleUriParser) || type == typeof(FileStyleUriParser) || type == typeof(NewsStyleUriParser) || type == typeof(GopherStyleUriParser) || type == typeof(NetPipeStyleUriParser) || type == typeof(NetTcpStyleUriParser) || type == typeof(LdapStyleUriParser))
303 {
304 _flags |= UriSyntaxFlags.SimpleUserSyntax;
305 }
306 }
UriSyntaxFlags _flags
Definition UriParser.cs:75

References System.UriParser._flags, and System.type.

Referenced by System.UriParser.FetchSyntax().