Classes

  Class Description
Public class MobileProfiles
Static class provides methods and properties to manage MobileProfile. Can create MobileProfile explicitly with attributes MobileNumber or ProfileKey or both. Also has methods to find MobileProfile using any of the attributes.
Public class ProfileBase
Type represents the MobileProfile context of the currently requesting device. Developer can use the properties and methods to perform read/write custom data and can be shared across the sessions but from a same device. MobileProfile context can be accessed using the property MobileProfile.

Examples

Following code demonstrates how to access ProfileBase object which represents the MobileProfile context of the currently requesting device.
CopyC#
this.MobileProfile["LAST_LOGIN_AT"] = DateTime.Now.ToString();
Public class ProfileModule
Custom HttpModule to deal with all MobileProfile related tasks like Database read/write, loading and persisting the MobileProfile data to and from objects Request and Response context etc. The data store is SQLEXPRESS or SQL Server database which is as configured in the Profile configuration section.

Interfaces

  Interface Description
Public interface IMobileProfileControl
Interface to integrate Framework controls with the MobileProfile or Datapersistence feature.