|  | ProfileOptionsExtensionGetSaveData Method  | 
 
            Called after 
Validate. Provide the data you wish to save. 
            
 
    Namespace: 
   CTExtensions.Interfaces
    Assembly:
   CTInterface (in CTInterface.dll)
 Syntax
Syntaxpublic abstract byte[] GetSaveData(
	out bool bCancelSave
)
Public MustOverride Function GetSaveData ( 
	<OutAttribute> ByRef bCancelSave As Boolean
) As Byte()
Parameters
- bCancelSave
- Type: SystemBoolean
 True to cancel save. Avoid using this; use Validate instead and always return false here.
Return Value
Type: 
ByteMust return the data to store for current extension. See 
LoadData(Byte) for loading the data.
 Availability
Availability See Also
See Also