DataSource.CustomData Property
Gets or sets the custom data for this data source.
Namespace: Microsoft.PerformancePoint.Scorecards
Assembly: Microsoft.PerformancePoint.Scorecards.Client (in Microsoft.PerformancePoint.Scorecards.Client.dll)
Syntax
'Declaration
Public Overridable Property CustomData As String
Get
Set
'Usage
Dim instance As DataSource
Dim value As String
value = instance.CustomData
instance.CustomData = value
public virtual string CustomData { get; set; }
Property Value
Type: System.String
The custom data for this data source.
Implements
Remarks
This is an optional container for storing data as a string or serialized object. It can be used to store information that your data source needs that is not stored in another property. For example, an Excel Workbook data source uses it to store the contents of an Excel file as a serialized dataset. For an example of how a custom data source uses CustomData, see How to: Create Editors for PerformancePoint Services Tabular Data Sources.