RefactoringContributor<TContributorInput>.ContributeChanges Method

This method takes in a ContributorInput of the appropriate type and returns the contributor's change proposal and the additional ContributorInputs that are now relevant.

Namespace:  Microsoft.VisualStudio.Data.Schema.Project.Refactoring
Assembly:  Microsoft.VisualStudio.Data.Schema.Project (in Microsoft.VisualStudio.Data.Schema.Project.dll)

Syntax

'Declaration
Protected MustOverride Function ContributeChanges ( _
    input As TContributorInput _
) As Tuple(Of IList(Of ChangeProposal), IList(Of ContributorInput))
'Usage
Dim input As TContributorInput
Dim returnValue As Tuple(Of IList(Of ChangeProposal), IList(Of ContributorInput))

returnValue = Me.ContributeChanges(input)
protected abstract Tuple<IList<ChangeProposal>, IList<ContributorInput>> ContributeChanges(
    TContributorInput input
)
protected:
virtual Tuple<IList<ChangeProposal^>^, IList<ContributorInput^>^> ContributeChanges(
    TContributorInput input
) abstract
protected abstract function ContributeChanges(
    input : TContributorInput
) : Tuple<IList<ChangeProposal>, IList<ContributorInput>>

Parameters

Return Value

Type: Microsoft.Data.Schema.Common.Tuple<IList<ChangeProposal>, IList<ContributorInput>>
Tuple<IList<ChangeProposal>, IList<ContributorInput>> A tuple of a change proposal list and a list of additional [ContributorInputs].

.NET Framework Security

See Also

Reference

RefactoringContributor<TContributorInput> Class

RefactoringContributor<TContributorInput> Members

Microsoft.VisualStudio.Data.Schema.Project.Refactoring Namespace