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