1 write to Destination
Microsoft.CodeAnalysis.Features (1)
PullMemberUp\PullMembersUpOptions.cs (1)
38Destination = destination;
10 references to Destination
Microsoft.CodeAnalysis.Features (8)
PullMemberUp\MembersPuller.cs (8)
54? string.Format(FeaturesResources.Pull_0_up_to_1, selectedMembers.Single().Name, result.Destination.Name) 55: string.Format(FeaturesResources.Pull_selected_members_up_to_0, result.Destination.Name); 69return pullMembersUpOptions.Destination.TypeKind switch 74_ => throw ExceptionUtilities.UnexpectedValue(pullMembersUpOptions.Destination), 106solution, pullMemberUpOptions.Destination, location: null, cancellationToken).ConfigureAwait(false); 286solution, result.Destination, location: null, cancellationToken).ConfigureAwait(false); 363if (!result.Destination.IsAbstract && 366var modifiers = DeclarationModifiers.From(result.Destination).WithIsAbstract(true);
Microsoft.VisualStudio.LanguageServices (2)
PullMemberUp\WarningDialog\PullMemberUpWarningViewModel.cs (2)
27if (!options.Destination.IsAbstract && 31warningMessagesBuilder.Add(string.Format(ServicesVSResources._0_will_be_changed_to_abstract, options.Destination.Name));