Xamarin.Insights.Identify Method
Identify is used to identify users with unique information, this also allows Insights to attach other reports to this user. This method is a shorthand version of Identify(string, IDictionary) in that it essentially represents a table with one value.

Syntax

public static void Identify (string uid, string key, string value)

Parameters

uid
The unique identifier for this user, this can be whatever string the developer wants as long as it is unique for that user, using DeviceIDs and such is not recommended, those are only unique to devices
key
The key representing a key/value storage type.
value
The value representing a key/value storage type.

Remarks

This sample shows how to call the Insights.Identify(string, string, string) method with a key/value.

C# Example

            Insights.Identify("YourUsersUniqueId", "Email", "njpatel@catfacts.com");
            

Requirements

Namespace: Xamarin
Assembly: Xamarin.Insights (in Xamarin.Insights.dll)
Assembly Versions: 0.2.0.0, 1.0.0.0