ForeignKeyColumn Constructor (ForeignKey, String)

Initializes a new instance of the ForeignKeyColumn class based on the specified foreign key with the specified name.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
Public Sub New ( _
    foreignKey As ForeignKey, _
    name As String _
)
'Usage
Dim foreignKey As ForeignKey
Dim name As String

Dim instance As New ForeignKeyColumn(foreignKey, _
    name)
public ForeignKeyColumn(
    ForeignKey foreignKey,
    string name
)
public:
ForeignKeyColumn(
    ForeignKey^ foreignKey, 
    String^ name
)
new : 
        foreignKey:ForeignKey * 
        name:string -> ForeignKeyColumn
public function ForeignKeyColumn(
    foreignKey : ForeignKey, 
    name : String
)

Parameters