DataCache.Remove Method (String, String)

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Removes an object from the specified region.

Namespace: Microsoft.Data.Caching
Assembly: ClientLibrary (in clientlibrary.dll)

Syntax

'Declaration
Public Sub Remove ( _
    key As String, _
    region As String _
)
'Usage
Dim instance As DataCache
Dim key As String
Dim region As String

instance.Remove(key, region)
public void Remove (
    string key,
    string region
)
public:
void Remove (
    String^ key, 
    String^ region
)
public void Remove (
    String key, 
    String region
)
public function Remove (
    key : String, 
    region : String
)

Parameters

  • key
    The unique value that is used to identify the object in the region.
  • region
    The name of the region the object resides in.

Remarks

For more information about how to use this method, see How to: Remove an Object from Cache (Velocity).

See Also

Reference

DataCache Class
DataCache Members
Microsoft.Data.Caching Namespace