11 references to UriSchemeFile
Microsoft.Build (1)
Xml\XmlReaderExtension.cs (1)
87
string uri = new UriBuilder(Uri.
UriSchemeFile
, string.Empty) { Path = file }.ToString();
Microsoft.Build.Tasks.Core (2)
ManifestUtil\PathUtil.cs (2)
61
if (Uri.
UriSchemeFile
.Equals(u.Scheme, StringComparison.OrdinalIgnoreCase) &&
66
Scheme = Uri.
UriSchemeFile
,
Microsoft.Deployment.DotNet.Releases (1)
Utils.cs (1)
56
if (address.Scheme == Uri.
UriSchemeFile
)
Microsoft.Diagnostics.NETCore.Client (1)
DiagnosticsIpc\IpcEndpointConfig.cs (1)
176
else if (string.Equals(parsedAddress.Scheme, Uri.
UriSchemeFile
, StringComparison.OrdinalIgnoreCase))
System.Net.Requests (1)
System\Net\FileWebRequest.cs (1)
33
if (uri.Scheme != (object)Uri.
UriSchemeFile
)
System.Net.WebClient (4)
System\Net\WebClient.cs (4)
571
bool needsHeaderAndBoundary = (uri.Scheme != Uri.
UriSchemeFile
);
949
if (request.RequestUri.Scheme == Uri.
UriSchemeFile
)
1016
if (request.RequestUri.Scheme == Uri.
UriSchemeFile
)
1470
bool needsHeaderAndBoundary = (uri.Scheme != Uri.
UriSchemeFile
);
System.Private.Uri (1)
System\Uri.cs (1)
862
return (object)_syntax.SchemeName == (object)
UriSchemeFile
;