'Declaration
Public Function GetContact( _ ByVal contactID As Guid, _ Optional ByVal loadArchived As Boolean _ ) As Customer.Contact
'Usage
Dim instance As DataAccess Dim contactID As Guid Dim loadArchived As Boolean Dim value As Customer.Contact value = instance.GetContact(contactID, loadArchived)
public Customer.Contact GetContact( Guid contactID, bool loadArchived )
public: Customer.Contact^ GetContact( Guid contactID, bool loadArchived )
Parameters
- contactID
- The unique identifier of the Contact as a Guid.
- loadArchived
- Determines if deleted records are allowed to be returned in the result.
Return Value
A comprehensive Contact object.