Metodo AssemblyCollection.GetByName
Gets the Assembly, with the specified name, from the collection.
Spazio dei nomi Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Sintassi
'Dichiarazione
Public Function GetByName ( _
name As String _
) As Assembly
'Utilizzo
Dim instance As AssemblyCollection
Dim name As String
Dim returnValue As [Assembly]
returnValue = instance.GetByName(name)
public Assembly GetByName(
string name
)
public:
Assembly^ GetByName(
String^ name
)
member GetByName :
name:string -> Assembly
public function GetByName(
name : String
) : Assembly
Parametri
- name
Tipo: System.String
The name of the Assembly to be returned.
Valore restituito
Tipo: Microsoft.AnalysisServices.Assembly
The Assembly, if contained in the collection.
Eccezioni
Eccezione | Condizione |
---|---|
ItemNotFoundException | name is not contained by the collection. |