3 writes to FullFilePath
Microsoft.VisualStudio.LanguageServices (3)
GenerateType\GenerateTypeDialogViewModel.cs (3)
289this.FullFilePath = implicitFilePath + @"\" + trimmedFileName; 293this.FullFilePath = Path.GetFullPath(this.FullFilePath); 310this.FullFilePath = string.Join("\\", fileNameInFullPathInContainers.Select(str => str.Trim()));
11 references to FullFilePath
Microsoft.VisualStudio.LanguageServices (11)
GenerateType\GenerateTypeDialogViewModel.cs (10)
293this.FullFilePath = Path.GetFullPath(this.FullFilePath); 302var lastIndexOfSeparatorInFullPath = this.FullFilePath.LastIndexOf('\\'); 305var fileNameInFullPathInContainers = this.FullFilePath.Split(new[] { '\\' }, StringSplitOptions.RemoveEmptyEntries); 323if (this.FullFilePath.StartsWith(projectRootPath, StringComparison.Ordinal)) 326var folderPath = this.FullFilePath[projectRootPath.Length..]; 358var lastIndexOfSeparator = this.FullFilePath.LastIndexOf('\\'); 365_fileName = this.FullFilePath[(lastIndexOfSeparator + 1)..]; 369if (this.FullFilePath.Split(new[] { '\\' }, StringSplitOptions.RemoveEmptyEntries).Any(s => _reservedKeywords.Contains(s, StringComparer.OrdinalIgnoreCase))) 377if (this.SelectedProject.Documents.Where(n => n != null).Where(n => n.FilePath == FullFilePath).Any() || 380File.Exists(FullFilePath))
GenerateType\VisualStudioGenerateTypeOptionsServiceFactory.cs (1)
79fullFilePath: viewModel.FullFilePath,