2 overrides of Name
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\IO\DirectoryInfo.cs (1)
43public override string Name
src\libraries\System.Private.CoreLib\src\System\IO\FileInfo.cs (1)
32public override string Name => _name ??= Path.GetFileName(OriginalPath);
9 references to Name
Microsoft.Extensions.FileProviders.Physical (1)
Internal\FileSystemInfoHelper.cs (1)
18else if (fileSystemInfo.Name.StartsWith(".", StringComparison.Ordinal) && (filters & ExclusionFilters.DotPrefixed) != 0)
Microsoft.Extensions.FileSystemGlobbing (1)
Abstractions\FileInfoWrapper.cs (1)
39/// Equals the value of <see cref="System.IO.FileSystemInfo.Name" />.
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IOUtils.vb (1)
129Return files(Index).Name
System.IO.Ports (4)
System\IO\Ports\SerialPort.Unix.cs (4)
53bool isTtyS = entry.Name.StartsWith("ttyS", StringComparison.Ordinal); 54bool isTtyGS = !isTtyS && entry.Name.StartsWith("ttyGS", StringComparison.Ordinal); 59Directory.Exists(sysUsbDir + entry.Name) || 62string deviceName = devDir + entry.Name;
System.Net.Ping (1)
src\libraries\Common\src\System\Net\NetworkInformation\UnixCommandLinePing.cs (1)
51if (linkInfo?.Name.EndsWith("busybox", StringComparison.Ordinal) == true)
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\IO\FileSystemInfo.Unix.cs (1)
40get => _fileStatus.GetAttributes(FullPath, Name);