Removes the Property objects specified by their names in a String array from this Properties collection cache. Note that the Properties collection on the server remains unchanged. Properties are only removed from the local properties cache.


Namespace: FileNet.Api.Property
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Sub RemoveFromCache( _ 
   ByVal propertyNames As String() _ 
)
C#
public abstract void RemoveFromCache(
   string[] propertyNames
)
C++
public:
 void RemoveFromCache(
   array<String>^ propertyNames
) abstract 
J#
public abstract void RemoveFromCache(
   string[] propertyNames
)
JScript
public abstract  function RemoveFromCache(
   propertyNames : String[]
)

Parameters

propertyNames
A String array specifying the names of the properties to remove.

See Also