OlapDataProviderLoadTObject Method |
Loads the specified object by its unique name.
Namespace:
Dundas.BI.Data.DataProviders.Olap
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxpublic abstract TObject Load<TObject>(
OlapCube cube,
string objectUniqueName
)
where TObject : OlapElement
Public MustOverride Function Load(Of TObject As OlapElement) (
cube As OlapCube,
objectUniqueName As String
) As TObject
public:
generic<typename TObject>
where TObject : OlapElement
virtual TObject Load(
OlapCube^ cube,
String^ objectUniqueName
) abstract
abstract Load :
cube : OlapCube *
objectUniqueName : string -> 'TObject when 'TObject : OlapElement
Parameters
- cube
- Type: Dundas.BI.Data.Metadata.OlapOlapCube
The cube. - objectUniqueName
- Type: SystemString
Unique name of the object.
Type Parameters
- TObject
- The type of the object.
Return Value
Type:
TObject
The object of the specified type and specified name or
if not found.
See Also