DataSourceViewCollection.Remove Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Remove(DataSourceView, Boolean) |
Removes the specified DataSourceView from the collection. |
Remove(DataSourceView) |
Removes the specified DataSourceView from the collection. |
Remove(String) |
Removes the DataSourceView with the specified identifier from the collection. |
Remove(String, Boolean) |
Removes the DataSourceView with the specified identifier from the collection. |
Remove(DataSourceView, Boolean)
Removes the specified DataSourceView from the collection.
public void Remove (Microsoft.AnalysisServices.DataSourceView item, bool cleanUp);
override this.Remove : Microsoft.AnalysisServices.DataSourceView * bool -> unit
Public Sub Remove (item As DataSourceView, cleanUp As Boolean)
Parameters
- item
- DataSourceView
The DataSourceView to be removed.
- cleanUp
- Boolean
True, if referencing objects are to be deleted; otherwise, false.
Exceptions
The specified item is a null reference (Nothing in Visual Basic).
Remarks
This API supports the product infrastructure and is not intended to be used directly from your code.
Applies to
Remove(DataSourceView)
Removes the specified DataSourceView from the collection.
public void Remove (Microsoft.AnalysisServices.DataSourceView item);
override this.Remove : Microsoft.AnalysisServices.DataSourceView -> unit
Public Sub Remove (item As DataSourceView)
Parameters
- item
- DataSourceView
The DataSourceView to be removed.
Exceptions
The specified item is a null reference (Nothing in Visual Basic).
Applies to
Remove(String)
Removes the DataSourceView with the specified identifier from the collection.
public void Remove (string id);
override this.Remove : string -> unit
Public Sub Remove (id As String)
Parameters
- id
- String
The identifier of the DataSourceView to be removed.
Applies to
Remove(String, Boolean)
Removes the DataSourceView with the specified identifier from the collection.
public void Remove (string id, bool cleanUp);
override this.Remove : string * bool -> unit
Public Sub Remove (id As String, cleanUp As Boolean)
Parameters
- id
- String
The identifier of the DataSourceView to be removed.
- cleanUp
- Boolean
True, if referencing objects are to be deleted; otherwise, false.
Remarks
This API supports the product infrastructure and is not intended to be used directly from your code.