DatabaseCollection.Remove 方法

定义

重载

Remove(Database)

从集合中移除指定的 Database

Remove(String)

从集合中删除具有指定标识符的 Database

Remove(Database, Boolean)

从集合中移除指定的 Database

Remove(String, Boolean)

从集合中删除具有指定标识符的 Database

Remove(Database)

从集合中移除指定的 Database

public void Remove (Microsoft.AnalysisServices.Tabular.Database item);
override this.Remove : Microsoft.AnalysisServices.Tabular.Database -> unit
Public Sub Remove (item As Database)

参数

item
Database

要删除的 Database

例外

指定的项为空引用 (在 Visual Basic 中为 Nothing)。

适用于

Remove(String)

从集合中删除具有指定标识符的 Database

public void Remove (string id);
override this.Remove : string -> unit
Public Sub Remove (id As String)

参数

id
String

要删除的 Database 的标识符。

适用于

Remove(Database, Boolean)

从集合中移除指定的 Database

public void Remove (Microsoft.AnalysisServices.Tabular.Database item, bool cleanUp);
override this.Remove : Microsoft.AnalysisServices.Tabular.Database * bool -> unit
Public Sub Remove (item As Database, cleanUp As Boolean)

参数

item
Database

要删除的 Database

cleanUp
Boolean

若要删除引用对象,则为 true;否则为 false。

例外

指定的项为空引用 (在 Visual Basic 中为 Nothing)。

注解

此 API 支持产品基础结构,不能在代码中直接使用。

适用于

Remove(String, Boolean)

从集合中删除具有指定标识符的 Database

public void Remove (string id, bool cleanUp);
override this.Remove : string * bool -> unit
Public Sub Remove (id As String, cleanUp As Boolean)

参数

id
String

要删除的 Database 的标识符。

cleanUp
Boolean

若要删除引用对象,则为 true;否则为 false。

注解

此 API 支持产品基础结构,不能在代码中直接使用。

适用于