Writes a new object to the space.
![](../icons/collapse_all.gif)
C# | Visual Basic | Visual C++ | J# |
ILeaseContext<T> Write<T>( T obj )
Function Write(Of T) ( _ obj As T _ ) As ILeaseContext(Of T)
generic<typename T> ILeaseContext<T>^ Write( T obj )
![](../icons/collapse_all.gif)
- T
- Type of object to write.
![](../icons/collapse_all.gif)
- obj (T)
- The object to write.
![](../icons/collapse_all.gif)
A lease handle on successful write.
![](../icons/collapse_all.gif)
Exception | Condition |
---|---|
EntryAlreadyInSpaceException | An entry with matching ID exists in space (WriteModifiers.WriteOnly). |
EntryNotInSpaceException | An entry with matching ID does not exist in space (WriteModifiers.UpdateOnly). |
OperationTimeoutException | Timeout expired after waiting for a transactional proper matching entry (when using WriteModifiers.UpdateOrWrite). |
TransactionException | Transaction error occured. |
EntryVersionConflictException | Operation is rejected as a result of optimistic locking version conflict. |
InactiveSpaceException | The space is in backup mode and therefore is not active. |