26 references to GenericUriParserOptions
PresentationBuildTasks (1)
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (1)
1744
UriParser.Register(new GenericUriParser(
GenericUriParserOptions
.GenericAuthority), URISCHEME_PACK, -1);
System (24)
net\System\GenericUriParser.cs (13)
85
public GenericUriParser(
GenericUriParserOptions
options)
90
private static UriSyntaxFlags MapGenericParserOptions(
GenericUriParserOptions
options)
98
if ((options &
GenericUriParserOptions
.GenericAuthority) != 0)
105
if ((options &
GenericUriParserOptions
.AllowEmptyAuthority) != 0)
110
if ((options &
GenericUriParserOptions
.NoUserInfo) != 0)
115
if ((options &
GenericUriParserOptions
.NoPort) != 0)
120
if ((options &
GenericUriParserOptions
.NoQuery) != 0)
125
if ((options &
GenericUriParserOptions
.NoFragment) != 0)
130
if ((options &
GenericUriParserOptions
.DontConvertPathBackslashes) != 0)
135
if ((options &
GenericUriParserOptions
.DontCompressPath) != 0)
140
if ((options &
GenericUriParserOptions
.DontUnescapePathDotsAndSlashes) != 0)
145
if ((options &
GenericUriParserOptions
.Idn) != 0)
150
if ((options &
GenericUriParserOptions
.IriParsing) != 0)
net\System\Net\Configuration\SchemeSettingElement.cs (7)
18
typeof(
GenericUriParserOptions
),
GenericUriParserOptions
.Default,
35
public
GenericUriParserOptions
GenericUriParserOptions
37
get { return (
GenericUriParserOptions
)this[genericUriParserOptions]; }
49
private
GenericUriParserOptions
options;
51
public SchemeSettingInternal(string name,
GenericUriParserOptions
options)
64
public
GenericUriParserOptions
Options
net\System\Net\Configuration\UriSectionReader.cs (3)
238
GenericUriParserOptions
genericUriParserOptions = (
GenericUriParserOptions
)Enum.Parse(
239
typeof(
GenericUriParserOptions
), genericUriParserOptionsValue);
net\System\URI.cs (1)
1029
if (schemeSetting.Options ==
GenericUriParserOptions
.DontUnescapePathDotsAndSlashes) {
WindowsBase (1)
Base\System\IO\Packaging\PackUriHelper.cs (1)
696
UriParser.Register(new GenericUriParser(
GenericUriParserOptions
.GenericAuthority), UriSchemePack, -1);