Used by search operations to access rows from the repository database. Each row contains a collection of properties, returned as a
Properties
object.
A RepositoryRow
object is similar to an EngineObject
object. However, a RepositoryRow
object cannot be used for updates, and it may contain multiple, identical properties. For example, each RepositoryRow
object in the RepositoryRowSet
collection returned as the result of the query "select Id as x, Creator as x from Document" would have two copies of the property "x". In this case, you would need to use the IProperties.ToArray method to get both values.
Namespace: FileNet.Api.QueryAssembly: FileNet.Api (in filenet.api.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Interface IRepositoryRow |
C# |
---|
public interface IRepositoryRow |
C++ |
---|
interface class IRepositoryRow |
J# |
---|
public interface IRepositoryRow |
JScript |
---|
public interface IRepositoryRow |
See Also