36 references to VirtualPathOptions
System.Web (36)
VirtualPath.cs (30)
515return Create(virtualPath, VirtualPathOptions.AllowAllPath);
519return Create(virtualPath, VirtualPathOptions.AllowAllPath | VirtualPathOptions.EnsureTrailingSlash);
523return Create(virtualPath, VirtualPathOptions.AllowAllPath | VirtualPathOptions.AllowNull);
527return Create(virtualPath, VirtualPathOptions.AllowAbsolutePath);
531return Create(virtualPath, VirtualPathOptions.AllowAbsolutePath | VirtualPathOptions.AllowAppRelativePath);
535return Create(virtualPath, VirtualPathOptions.AllowAbsolutePath | VirtualPathOptions.EnsureTrailingSlash);
539return Create(virtualPath, VirtualPathOptions.AllowAbsolutePath | VirtualPathOptions.AllowAppRelativePath |
540VirtualPathOptions.EnsureTrailingSlash);
544return Create(virtualPath, VirtualPathOptions.AllowAbsolutePath | VirtualPathOptions.AllowNull);
548return Create(virtualPath, VirtualPathOptions.AllowAbsolutePath | VirtualPathOptions.AllowAppRelativePath | VirtualPathOptions.AllowNull);
552return Create(virtualPath, VirtualPathOptions.AllowAbsolutePath | VirtualPathOptions.AllowAppRelativePath |
553VirtualPathOptions.AllowNull | VirtualPathOptions.EnsureTrailingSlash);
556public static VirtualPath Create(string virtualPath, VirtualPathOptions options) {
564if ((options & VirtualPathOptions.AllowNull) != 0)
606if ((options & VirtualPathOptions.FailIfMalformed) != 0) {
614if ((options & VirtualPathOptions.EnsureTrailingSlash) != 0)
625if ((options & VirtualPathOptions.AllowAppRelativePath) == 0) {
636if ((options & VirtualPathOptions.AllowAbsolutePath) == 0) {
645if ((options & VirtualPathOptions.AllowRelativePath) == 0) {
654if ((options & VirtualPathOptions.AllowAbsolutePath) == 0) {