AggregationDesignCollection.GetByName Method
Gets the AggregationDesign, with the specified name, from the collection.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public Function GetByName ( _
name As String _
) As AggregationDesign
'Usage
Dim instance As AggregationDesignCollection
Dim name As String
Dim returnValue As AggregationDesign
returnValue = instance.GetByName(name)
public AggregationDesign GetByName(
string name
)
public:
AggregationDesign^ GetByName(
String^ name
)
member GetByName :
name:string -> AggregationDesign
public function GetByName(
name : String
) : AggregationDesign
Parameters
- name
Type: System.String
The name of the AggregationDesign to be returned.
Return Value
Type: Microsoft.AnalysisServices.AggregationDesign
The AggregationDesign, if contained in the collection.
Exceptions
Exception | Condition |
---|---|
ItemNotFoundException | name is not contained by the collection. |