Méthode | Description | |
---|---|---|
AppWillOpenUrl ( |
Read the URL that opened the application to search for an adjust deep link
|
|
ApplicationActivated ( ) : void |
Tell Adjust that the application is activated (brought to foreground). This is used to keep track of the current session state. This should only be used if the VisibilityChanged mechanism doesn't work
|
|
ApplicationDeactivated ( ) : void |
Tell Adjust that the application is deactivated (sent to background). This is used to calculate session attributes like session length and subsession count. This should only be used if the VisibilityChanged mechanism doesn't work
|
|
ApplicationLaunching ( |
Tell Adjust that the application was launched. This is required to initialize Adjust. Call this in the Application_Launching method of your Windows.UI.Xaml.Application class.
|
|
GetWindowsAdId ( ) : string |
Get the Windows Advertising Id
|
|
IsEnabled ( ) : bool |
Check if the SDK is enabled or disabled
|
|
SetEnabled ( bool enabled ) : void |
Enable or disable the adjust SDK
|
|
SetOfflineMode ( bool offlineMode ) : void |
Puts the SDK in offline or online mode
|
|
SetupLogging ( Action |
||
TrackEvent ( |
Tell Adjust that a particular event has happened.
|
Méthode | Description | |
---|---|---|
Adjust ( ) : System | ||
VisibilityChanged ( CoreWindow sender, VisibilityChangedEventArgs args ) : void |
Tell Adjust that the application is activated (brought to foreground) or deactivated (sent to background).
|
public static AppWillOpenUrl ( |
||
uri | ||
Résultat | void |
public static ApplicationActivated ( ) : void | ||
Résultat | void |
public static ApplicationDeactivated ( ) : void | ||
Résultat | void |
public static ApplicationLaunching ( |
||
adjustConfig |
/// The object that configures the adjust SDK. |
|
Résultat | void |
public static SetEnabled ( bool enabled ) : void | ||
enabled | bool | The flag to enable or disable the adjust SDK |
Résultat | void |
public static SetOfflineMode ( bool offlineMode ) : void | ||
offlineMode | bool | |
Résultat | void |
public static SetupLogging ( Action |
||
logDelegate | Action |
|
logLevel | LogLevel | |
Résultat | void |
public static TrackEvent ( |
||
adjustEvent |
/// The object that configures the event. |
|
Résultat | void |