SettingsObject Methods |
The SettingsObject type exposes the following members.
Name | Description | |
---|---|---|
CloneT |
Clone this object using serialization.
| |
CopyTo |
Copy this object to target object.
| |
CreateAdapter |
Provide GUI counterpart for this custom settings type.
It will be shown as Export Profile Field settings tab,
Profile Settings page or User Settings page depending
on which type param this object is from
ExportBaseFIELDSETTINGSTYPE, EXPORTSETTINGSTYPE, PROFILESETTINGSTYPE, USERSETTINGSTYPE.
| |
Deserialize(Byte) |
Internally used for deserializing this object from store.
| |
Deserialize(Stream) |
Deserialize your object from s. Do not otherwise
manipulate or modify e.g. Position.
It is highly recommended to use StreamExtensions for popping
base types from s.
Data must be deserialized in same order as is serialized at Serialize(Stream). Make sure you deserialize according to Version variable and then set it to correspond current object version. | |
Init |
Init is always called immediately after this object is either created as new
or deserialized.
| |
Serialize |
Internally used for serializing and storing this object.
| |
Serialize(Stream) |
Serialize your object to s. Do not otherwise
manipulate or modify e.g. Position.
It is highly recommended to use StreamExtensions for pushing
base types into s.
Data must be serialized in same order as is deserialized at Deserialize(Stream). |