ICubePerspectiveServiceUpdateCubePerspective Method  | 
 
            Updates the cube perspective and replaces existing measures and dimensions with the objects identified by corresponding parameters.
            
 
    Namespace: 
   Dundas.BI.Entities.CubePerspectives
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxvoid UpdateCubePerspective(
	Guid cubePerspectiveId,
	IList<string> levelUniqueNames,
	IList<string> measureUniqueNames
)
Sub UpdateCubePerspective ( 
	cubePerspectiveId As Guid,
	levelUniqueNames As IList(Of String),
	measureUniqueNames As IList(Of String)
)
void UpdateCubePerspective(
	Guid cubePerspectiveId, 
	IList<String^>^ levelUniqueNames, 
	IList<String^>^ measureUniqueNames
)
abstract UpdateCubePerspective : 
        cubePerspectiveId : Guid * 
        levelUniqueNames : IList<string> * 
        measureUniqueNames : IList<string> -> unit 
Parameters
- cubePerspectiveId
 - Type: SystemGuid
The cube perspective identifier. - levelUniqueNames
 - Type: System.Collections.GenericIListString
The level unique names. - measureUniqueNames
 - Type: System.Collections.GenericIListString
The measure unique names. 
Exceptions| Exception | Condition | 
|---|
| NotFoundException | The cube with the specified cubePerspectiveId does not exist. | 
| ArgumentException | Thrown when cubePerspectiveId, levelUniqueNames or measureUniqueNames are invalid. | 
See Also