3 writes to FullFilePath
Microsoft.VisualStudio.LanguageServices (3)
GenerateType\GenerateTypeDialogViewModel.cs (3)
288this.FullFilePath = implicitFilePath + @"\" + trimmedFileName; 292this.FullFilePath = Path.GetFullPath(this.FullFilePath); 309this.FullFilePath = string.Join("\\", fileNameInFullPathInContainers.Select(str => str.Trim()));
11 references to FullFilePath
Microsoft.VisualStudio.LanguageServices (11)
GenerateType\GenerateTypeDialogViewModel.cs (10)
292this.FullFilePath = Path.GetFullPath(this.FullFilePath); 301var lastIndexOfSeparatorInFullPath = this.FullFilePath.LastIndexOf('\\'); 304var fileNameInFullPathInContainers = this.FullFilePath.Split(new[] { '\\' }, StringSplitOptions.RemoveEmptyEntries); 322if (this.FullFilePath.StartsWith(projectRootPath, StringComparison.Ordinal)) 325var folderPath = this.FullFilePath[projectRootPath.Length..]; 357var lastIndexOfSeparator = this.FullFilePath.LastIndexOf('\\'); 364_fileName = this.FullFilePath[(lastIndexOfSeparator + 1)..]; 368if (this.FullFilePath.Split(new[] { '\\' }, StringSplitOptions.RemoveEmptyEntries).Any(s => _reservedKeywords.Contains(s, StringComparer.OrdinalIgnoreCase))) 376if (this.SelectedProject.Documents.Where(n => n != null).Where(n => n.FilePath == FullFilePath).Any() || 379File.Exists(FullFilePath))
GenerateType\VisualStudioGenerateTypeOptionsServiceFactory.cs (1)
77fullFilePath: viewModel.FullFilePath,