DropObjectsStatement.Objects Property

 

Applies To: SQL Server 2016 Preview

Gets a list of objects to be dropped.

Namespace:   Microsoft.SqlServer.TransactSql.ScriptDom
Assembly:  Microsoft.SqlServer.TransactSql.ScriptDom (in Microsoft.SqlServer.TransactSql.ScriptDom.dll)

Syntax

public IList<SchemaObjectName> Objects { get; }
public:
property IList<SchemaObjectName^>^ Objects {
    IList<SchemaObjectName^>^ get();
}
member Objects : IList<SchemaObjectName> with get
Public ReadOnly Property Objects As IList(Of SchemaObjectName)

Property Value

Type: System.Collections.Generic.IList<SchemaObjectName>

The list of objects to be dropped.

See Also

DropObjectsStatement Class
Microsoft.SqlServer.TransactSql.ScriptDom Namespace

Return to top