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.
Gets the Trace that has 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 Trace
'Usage
Dim instance As TraceCollection
Dim name As String
Dim returnValue As Trace
returnValue = instance.GetByName(name)
public Trace GetByName(
string name
)
public:
Trace^ GetByName(
String^ name
)
member GetByName :
name:string -> Trace
public function GetByName(
name : String
) : Trace
Parameters
- name
Type: System.String
The name of the Trace to return.
Return Value
Type: Microsoft.AnalysisServices.Trace
The Trace if it exists in the collection.
Exceptions
Exception | Condition |
---|---|
ItemNotFoundException | name does not exist in the collection. |