UserTrackingLocation.ActivityTypeName Property

Definition

Gets or sets the unqualified name of the common language runtime (CLR) type of the activity from which the user data must be emitted to be tracked.

public:
 property System::String ^ ActivityTypeName { System::String ^ get(); void set(System::String ^ value); };
public string ActivityTypeName { get; set; }
member this.ActivityTypeName : string with get, set
Public Property ActivityTypeName As String

Property Value

The unqualified name of the Type of the activity from which the data must be emitted.

Remarks

You must specify the unqualified name of the type of the activity. For example, to specify the unqualified name of a CodeActivity activity, set ActivityTypeName to "Code".

ActivityTypeName provides a much easier way to specify the type of the activity that emits the user data when you author a profile directly in XML. ActivityTypeName also provides a version-independent way of referring to the type of the activity.

You must specify either ActivityTypeName or ActivityType to properly configure the UserTrackingLocation.

Applies to