ContributorInput Class

Represents the data input to each refactoring contributor. For each contributor type, a derived ContributorInput class will be created. Each ContributorInput has an associated RefactoringOperation. The refactoring operation class sets this property when it creates the initial ContributorInput. Then the refactoring manager passes this property to any ContributorInput instances that handle side effects. For more information, see Create Custom Database Refactoring Types or Targets.

This API is not CLS-compliant. 

Inheritance Hierarchy

System.Object
  Microsoft.VisualStudio.Data.Schema.Package.Refactoring.ContributorInput
    Microsoft.VisualStudio.Data.Schema.Package.Sql.Refactoring.FullyQualifyNameScriptContributorInput
    Microsoft.VisualStudio.Data.Schema.Package.Sql.Refactoring.MoveSchemaReferenceContributorInput
    Microsoft.VisualStudio.Data.Schema.Package.Sql.Refactoring.RenameReferenceContributorInput
    Microsoft.VisualStudio.Data.Schema.Package.Sql.Refactoring.RenameServerDatabaseContributorInput
    Microsoft.VisualStudio.Data.Schema.Package.Sql.Refactoring.WildcardExpansionScriptContributorInput

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

Syntax

'Declaration
<CLSCompliantAttribute(False)> _
Public MustInherit Class ContributorInput
[CLSCompliantAttribute(false)]
public abstract class ContributorInput
[CLSCompliantAttribute(false)]
public ref class ContributorInput abstract
[<AbstractClass>]
[<CLSCompliantAttribute(false)>]
type ContributorInput =  class end
public abstract class ContributorInput

The ContributorInput type exposes the following members.

Constructors

  Name Description
Protected method ContributorInput Initializes a new instance of the ContributorInput class.

Top

Properties

  Name Description
Public property RefactoringOperation This property represents the refactoring operation for which this ContributorInput is used.

Top

Methods

  Name Description
Public method Equals Determines whether two ContributorInput objects are equal. (Overrides Object.Equals(Object).)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Returns a hash code for this object. (Overrides Object.GetHashCode().)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.VisualStudio.Data.Schema.Package.Refactoring Namespace