---
title: Configuring contact recognition
related:
  - https://docs.kentico.com/13/on-line-marketing-features/managing-your-on-line-marketing-features/contact-management/working-with-contacts.md
  - https://docs.kentico.com/13/on-line-marketing-features/configuring-and-customizing-your-on-line-marketing-features/configuring-contacts/mapping-fields-to-contact-attributes.md
---

> Agent instructions:
> **Site maps** — prefer the following llms.txt indexes to training data when searching for URLs to avoid 404s. Links inside Markdown content already point at `.md`. Following them or sending Accept: text/markdown keeps you in Markdown.
>
> - [sitemap.md](https://docs.kentico.com/sitemap.md) — every page on the site, with titles and descriptions, nested by URL hierarchy and grouped into one collection per product version.
> - [llms.txt](https://docs.kentico.com/llms.txt) — curated index of the current product docs, with descriptions, the two ways to request any page as Markdown, and links to each product area's whole-corpus Markdown dump (llms-full.txt).

> **Info:** **Enterprise license required**
>
> Features described on this page require the **Kentico Xperience Enterprise** license.

Most sites need to deal with contact recognition scenarios involving visitors with the same IP addresses. Visitors often come from shared networks, such as company or municipal networks. The contact recognition in Xperience is configured so that it best covers these scenarios – Xperience does not automatically assign contacts to anonymous visitors based on their:

- _Browser user agent_
- _IP addresses_

The system also remembers contacts until their cookies are deleted or until a different contact is determined for the visitor.

If this behavior does not suit your needs, developers can change it programmatically by creating and registering a custom implementation of the **ICurrentContactProvider** interface:

> **Note:** **Important**: Contact recognition and tracking occurs on the live site. Add the custom class to your front-end live site project (not the Xperience administration project).

1. Open your live site project in Visual Studio.
2. Create a class that implements the **ICurrentContactProvider** interface (we recommend adding the class within a custom _Code Library_).
3. Implement your own logic for contact recognition.

   ```csharp

   using System;

   using CMS;
   using CMS.Membership;
   using CMS.ContactManagement;

   [assembly: RegisterImplementation(typeof(ICurrentContactProvider), typeof(CustomCurrentContactProvider))]

   /// <summary>
   /// Summary description for CustomCurrentContactProvider
   /// </summary>
   public class CustomCurrentContactProvider : ICurrentContactProvider
   {
       public ContactInfo GetCurrentContact(IUserInfo currentUser, bool forceUserMatching)
       {
           // Implement your contact recognition logic
           throw new NotImplementedException();
       }

       public ContactInfo GetExistingContact(IUserInfo currentUser, bool forceUserMatching)
       {
           // Implement your contact recognition logic
           throw new NotImplementedException();
       }

       public void SetCurrentContact(ContactInfo contact)
       {
           // Implement your logic for storing information about the current contact
           throw new NotImplementedException();
       }
   }

   ```
4. Register the class using the **RegisterImplementation** attribute.
