OlapDataProviderLoadTObject Method |
Loads the specified object by its unique name.
Namespace: Dundas.BI.Data.DataProviders.OlapAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
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 : OlapElementParameters
- cube OlapCube
- The cube.
- objectUniqueName String
- Unique name of the object.
Type Parameters
- TObject
- The type of the object.
Return Value
TObject
The object of the specified type and specified name or
if not found.
See Also