Saves changes made to this object. You can optionally refresh a selected set of the object's properties using the filter parameter.


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

Syntax

Visual Basic (Declaration)
Public MustOverride Sub Save( _ 
   ByVal refreshMode As RefreshMode,  _ 
   ByVal filter As PropertyFilter _ 
)
C#
public abstract void Save(
   RefreshMode refreshMode,
   PropertyFilter filter
)
C++
public:
 void Save(
   RefreshMode refreshMode,
   PropertyFilter filter
) abstract 
J#
public abstract void Save(
   RefreshMode refreshMode,
   PropertyFilter filter
)
JScript
public abstract  function Save(
   refreshMode : RefreshMode,
   filter : PropertyFilter
)

Parameters

refreshMode
Specifies whether or not to refresh all of the object's properties.
filter
A PropertyFilter object that represents information for controlling which property values (and with what level of detail and recursion) to return. If null, this method returns values for all non-object properties and returns placeholders for all object-valued properties (PropertyEngineObject properties with a state of PropertyState.UNEVALUATED or PropertyState.REFERENCE); any subsequent attempts to access an object-valued property will cause an automatic round-trip to the server to fetch its value.

Note
Specifying Null is the same as calling Save(refreshMode).

See Also