Table of Contents

Class VisitorToContactInfoProvider

Namespace
CMS.ContactManagement
Assembly
CMS.ContactManagement.dll

Class providing VisitorToContactInfo management.

[ProviderInterface(typeof(IVisitorToContactInfoProvider))]
[Obsolete("Use CMS.DataEngine.IInfoProvider<VisitorToContactInfo> instead. Use CMS.DataEngine.InfoProviderExtensions for additional methods for individual objects retrieval. To get an instance of the interface's implementation use dependency injection or access the instance directly via the CMS.DataEngine.Provider<VisitorToContactInfo>.Instance property. When faking metadata in CMS.Tests.UnitTests using Fake() use the obsolete provider class until fully removed.")]
[ObsoleteSince(30, 0)]
public class VisitorToContactInfoProvider : AbstractInfoProvider<VisitorToContactInfo, VisitorToContactInfoProvider>, IInfoProvider, ICustomizableProvider, IBulkOperationProvider, IWebFarmProvider, IInfoValidator<VisitorToContactInfo>, IInfoByGuidProvider<VisitorToContactInfo>, IInfoByNameProvider<VisitorToContactInfo>, IBulkInfoProvider<VisitorToContactInfo>, IVisitorToContactInfoProvider, IInfoProvider<VisitorToContactInfo>, IInfoByIdProvider<VisitorToContactInfo>
Inheritance
object
VisitorToContactInfoProvider
Implements
Inherited Members
Extension Methods

Constructors

VisitorToContactInfoProvider()

Constructor

public VisitorToContactInfoProvider()

Methods

BulkMoveVisitors(int, int)

Moves all relations between visitor and the contact from the contact identified by given sourceContactID to the contact identified by targetContactID.

[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 0)]
public static void BulkMoveVisitors(int sourceContactID, int targetContactID)

Parameters

sourceContactID int

Identifier of the contact the activities are moved from

targetContactID int

Identifier of the contact the activities are moved to

Remarks

This method should be used only in the merging process. Note that there is no consistency check on whether the contacts with given IDs exist or not (nor is the foreign key check in DB). Caller of this method should perform all the necessary checks prior to the method invocation.

CreateVisitorToContactInfo(ContactInfo)

Creates and sets record for given contact.

[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 0)]
public static void CreateVisitorToContactInfo(ContactInfo contact)

Parameters

contact ContactInfo

GetContactForVisitor(Guid)

Returns a ContactInfo for given System.Guid.

[Obsolete("Use CMS.ContactManagement.ContactInfoProviderExtensions.GetForVisitor(IInfoProvider<ContactInfo>, Guid) instead.")]
[ObsoleteSince(30, 0)]
public static ContactInfo GetContactForVisitor(Guid visitor)

Parameters

visitor Guid

Returns

ContactInfo