6 references to Name
Microsoft.CodeAnalysis.Workspaces (6)
Workspace\Host\PersistentStorage\DocumentKey.cs (1)
45=> new(projectKey, state.Id, state.FilePath, state.Name);
Workspace\Solution\AdditionalTextWithState.cs (1)
27public override string Path => _documentState.FilePath ?? _documentState.Name;
Workspace\Solution\ProjectState.cs (2)
371if (documentState.Name != null && projectFilePath != null) 378return PathUtilities.CombinePathsUnchecked(directory, documentState.Name);
Workspace\Solution\TextDocument.cs (1)
49public string Name => State.Name;
Workspace\Workspace.cs (1)
1472throw new NotSupportedException(string.Format(WorkspacesResources.Changing_document_0_is_not_supported, document.FilePath ?? document.Name));