Ask Learn
Preview
Please sign in to use this experience.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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.
Add() |
Creates a new DataSourceView object using a generated unique Name and identifier, adds it to the end of the collection and returns the new DataSourceView created. |
Add(DataSourceView) |
Adds the specified DataSourceView to the end of the collection. |
Add(String) |
Creates a new DataSourceView object using the specified name, adds it to the end of the collection and returns the new DataSourceView created. |
Add(String, String) |
Creates a new DataSourceView object using the specified name and identifier, adds it to the end of the collection and returns the new DataSourceView created. |
Creates a new DataSourceView object using a generated unique Name and identifier, adds it to the end of the collection and returns the new DataSourceView created.
public Microsoft.AnalysisServices.DataSourceView Add();
override this.Add : unit -> Microsoft.AnalysisServices.DataSourceView
Public Function Add () As DataSourceView
The newly created DataSourceView object.
Adds the specified DataSourceView to the end of the collection.
public int Add(Microsoft.AnalysisServices.DataSourceView item);
override this.Add : Microsoft.AnalysisServices.DataSourceView -> int
Public Function Add (item As DataSourceView) As Integer
The DataSourceView to be added.
The zero-based index at which the DataSourceView has been added to the collection.
Creates a new DataSourceView object using the specified name, adds it to the end of the collection and returns the new DataSourceView created.
public Microsoft.AnalysisServices.DataSourceView Add(string name);
override this.Add : string -> Microsoft.AnalysisServices.DataSourceView
Public Function Add (name As String) As DataSourceView
The Name for the new DataSourceView object.
The newly created DataSourceView object.
The specified name is not valid in the collection.
The identifier for the new DataSourceView object is generated based on the specified name.
Creates a new DataSourceView object using the specified name and identifier, adds it to the end of the collection and returns the new DataSourceView created.
public Microsoft.AnalysisServices.DataSourceView Add(string name, string id);
override this.Add : string * string -> Microsoft.AnalysisServices.DataSourceView
Public Function Add (name As String, id As String) As DataSourceView
The Name for the new DataSourceView object.
The identifier for the new DataSourceView object.
The newly created DataSourceView object.
Please sign in to use this experience.
Sign in