[This is preliminary documentation and is subject to change.]

Constructor to load the values of the object

Namespace:  OfficeClip.BusinessLayer.Service
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public OCContact(
	int contactId,
	MetaValue[] metaValues,
	OCTask[] tasks,
	OCEvent[] events,
	OCNote[] notes,
	HistoryInfo[] history,
	string[] attachments
)
Visual Basic (Declaration)
Public Sub New ( _
	contactId As Integer, _
	metaValues As MetaValue(), _
	tasks As OCTask(), _
	events As OCEvent(), _
	notes As OCNote(), _
	history As HistoryInfo(), _
	attachments As String() _
)
Visual C++
public:
OCContact(
	int contactId, 
	array<MetaValue^>^ metaValues, 
	array<OCTask^>^ tasks, 
	array<OCEvent^>^ events, 
	array<OCNote^>^ notes, 
	array<HistoryInfo^>^ history, 
	array<String^>^ attachments
)

Parameters

contactId
Type: System..::.Int32
The unique id of the contact
metaValues
Type: array<OfficeClip.BusinessLayer.Service..::.MetaValue>[]()[]
Array of metavalue objects
tasks
Type: array<OfficeClip.BusinessLayer.Service..::.OCTask>[]()[]
Array of task objects
events
Type: array<OfficeClip.BusinessLayer.Service..::.OCEvent>[]()[]
Array of events object
notes
Type: array<OfficeClip.BusinessLayer.Service..::.OCNote>[]()[]
Array of notes objects
history
Type: array<OfficeClip.BusinessLayer.Metabase..::.HistoryInfo>[]()[]
Array of history objects
attachments
Type: array<System..::.String>[]()[]
Array of attachment objects

See Also