Deletes an item from SimpleDB (all attributes).

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public void Delete<T>(
	Object itemName
)
Visual Basic
Public Sub Delete(Of T) ( _
	itemName As Object _
)
Visual C++
public:
generic<typename T>
virtual void Delete(
	Object^ itemName
) sealed

Parameters

itemName
Type: System..::..Object
Item name of the item to delete.

Type Parameters

T
Type of the item to delete

Implements

ISimol..::..Delete<(Of <<'(T>)>>)(Object)

Remarks

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionIf the itemName parameter is null
System..::..ArgumentExceptionIf the itemName type is invalid for the item type
AmazonSimpleDBExceptionIf the request to SimpleDB fails for any reason
Simol..::..SimolDataExceptionIf there are any property value conversion failures
Simol..::..SimolConfigurationExceptionIf no valid SimpleDB mapping can be configured for the specified item type

See Also