10 references to Write
Microsoft.CodeAnalysis.Workspaces (1)
TemporaryStorage\TemporaryStorageService.MemoryMappedInfo.cs (1)
99static info => info.MemoryMappedFile.CreateViewStream(info.Offset, info.Size, MemoryMappedFileAccess.Write),
System.IO.MemoryMappedFiles (8)
System\IO\MemoryMappedFiles\MemoryMappedFile.cs (6)
183/// <para>This parameter can't be set to <see cref="MemoryMappedFileAccess.Write"/></para></param> 194/// <para><paramref name="access"/> is set to <see cref="MemoryMappedFileAccess.Write"/>, which is not allowed.</para> 306if (access == MemoryMappedFileAccess.Write) 375if (access == MemoryMappedFileAccess.Write) 500Debug.Assert(access == MemoryMappedFileAccess.Write); 533if (access == MemoryMappedFileAccess.Write)
System\IO\MemoryMappedFiles\MemoryMappedFile.Unix.cs (1)
31if (access == MemoryMappedFileAccess.Write)
System\IO\MemoryMappedFiles\MemoryMappedView.Unix.cs (1)
184case MemoryMappedFileAccess.Write:
System.ServiceModel.NetNamedPipe (1)
System\ServiceModel\Channels\PipeConnectionInitiator.cs (1)
330return _fileMapping.CreateViewStream(0, sizeof(SharedMemoryContents), writable ? MemoryMappedFileAccess.Write : MemoryMappedFileAccess.Read);