Represents a class that can access identity values for a user or search for values accross the entire app. Identity values can be used to share public information between users, for example hashes of email address that can be used to check whether a certain user is in the system.

Examples

CopyC#
BuddyClient client = new BuddyClient("APPNAME", "APPPASS");
client.LoginAsync((user, state) => {
    var lst = user.IdentityValues.GetAllAsync(null);
}, "username", "password");

Namespace: Buddy
Assembly: Buddy (in Buddy.dll) Version: 1.0.2.7 (1.0.2.7)

Syntax

C#
public class Identity
Visual Basic
Public Class Identity
Visual C++
public ref class Identity
JavaScript
Buddy.Identity = function();

Type.createClass(
	'Buddy.Identity');

Inheritance Hierarchy

System..::..Object
  Buddy..::..Identity

See Also