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