2 writes to _destinationName
Microsoft.VisualStudio.LanguageServices (2)
MoveStaticMembers\MoveStaticMembersDialogViewModel.cs (2)
36_destinationName = new TypeNameItem(_prependedNamespace + defaultType); 136private set => SetProperty(ref _destinationName, value);
8 references to _destinationName
Microsoft.VisualStudio.LanguageServices (8)
MoveStaticMembers\MoveStaticMembersDialogViewModel.cs (8)
47var lastDot = _destinationName.FullyQualifiedTypeName.LastIndexOf('.'); 48return lastDot >= 0 ? _destinationName.FullyQualifiedTypeName[0..(lastDot + 1)] : ""; 56var lastDot = _destinationName.FullyQualifiedTypeName.LastIndexOf('.'); 57return lastDot >= 0 ? _destinationName.FullyQualifiedTypeName[(lastDot + 1)..] : _destinationName.FullyQualifiedTypeName; 93if (!_destinationName.IsNew) 100CanSubmit = IsValidType(_destinationName.FullyQualifiedTypeName); 135get => _destinationName;