EntityLog.GetEntityLogForContact Method

Get a user's entries in the entity log and any file changes
Public Shared Function GetEntityLogForContact( _ 
ByVal contact_id As EntityID, _ 
ByVal limit_to_job_id As EntityID, _ 
ByVal start_date As Date, _ 
ByVal end_date As Date, _ 
ByVal page As Long, _ 
ByVal num_entries_per_page As Long, _ 
ByVal db As IDatabase
) As List(Of EntityLogItem)
This language is not supported or no code example is available.
public static List<EntityLogItem> GetEntityLogForContact( 
EntityID contact_id
EntityID limit_to_job_id
DateTime start_date
DateTime end_date
long page
long num_entries_per_page
IDatabase db 
)
This language is not supported or no code example is available.
public:  
static List<EntityLogItem^>^ GetEntityLogForContact( 
EntityID^ contact_id
EntityID^ limit_to_job_id
DateTime start_date
DateTime end_date
long page
long num_entries_per_page
IDatabase^ db 
)
This language is not supported or no code example is available.
JScript does not support generic types and methods.
This language is not supported or no code example is available.

Parameters

contact_id
EntityID

the id of the contact

limit_to_job_id
EntityID

an optional id for limiting this to a specific Job

start_date
DateTime

the start date - may be DateTime.MinValue if no start date

end_date
DateTime

the end date - may be DateTime.MaxValue if no end date

page
long

the page number to retrieve

num_entries_per_page
long

the number of entries per page

db
IDatabase

the database connection to use

Return Value

List<EntityLogItem>

a list of delimited strings for each entry

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1

In this article

Definition