9 references to FileStream
mscorlib (3)
system\io\fileinfo.cs (1)
429
return new
FileStream
(FullPath, FileMode.Open, FileAccess.Read,
system\reflection\assembly.cs (2)
2266
return new
FileStream
(m.GetFullyQualifiedName(),
2285
fs[i] = new
FileStream
(((RuntimeModule)m[i]).GetFullyQualifiedName(),
System (3)
net\System\Net\Cache\IERequestCache.cs (2)
628
:
base
(entry.Filename, FileMode.Open, FileAccess.Read, FileShare.Read | FileShare.Delete, 4096, async)
815
base
(entry.Filename, FileMode.Create, FileAccess.ReadWrite, FileShare.None, 4096, async) {
net\System\Net\filewebrequest.cs (1)
577
:
base
(path, mode, access, sharing, length, async)
System.Xml (2)
System\Xml\Core\XmlWriterSettings.cs (1)
454
fs = new
FileStream
(outputFileName, FileMode.Create, FileAccess.Write, FileShare.Read, 0x1000, useAsync);
System\Xml\XmlDownloadManagerAsync.cs (1)
23
return Task.Run<Stream>(() => { return new
FileStream
(uri.LocalPath, FileMode.Open, FileAccess.Read, FileShare.Read, 1, true); });
WindowsBase (1)
Base\MS\Internal\IO\Zip\ZipArchive.cs (1)
94
archiveStream = new
FileStream
(path, mode, access, share, 4096, streaming);