IUserWriteSessionDeleteT Method
|
Deletes an existing object from the content store. Deletion occurs upon session closure.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax void Delete<T>(
T obj
)
where T :
Sub Delete(Of T As ) (
obj As T
)
generic<typename T>
where T :
void Delete(
T obj
)
abstract Delete :
obj : 'T -> unit when 'T :
Parameters
- obj
- Type: T
The object to be deleted
Type Parameters
- T
- The type of object to delete
Remarks
When the parameter value is null, nothing happens. Any objects with IDs that do not exist in the content store are ignored.
See Also