isAppAvailable
- DEFINITION
Method
SlimCD.Launch.isAppAvailable
Purpose
Tests to see if the Slim CD app is installed
Description
Allows developers to determine if the Slim CD app is available at the desired version, or if an update is required.
Business Rules
Argument List
Name Required Usage isAppAvailibleRequest Required Object containing properties for the request timeout Optional Integer wait time, in seconds, before timeout response is generated callback* Optional Function to call upon completion of asynchronous request *for JavaScript only
Request Fields
Reply Fields
Reply Hierarchy
Remarks
Not available on all platforms.
- .NET 4.5 / PCL
- Include
012#import "SlimCD.h"
Method
012-(BOOL) launchIsAppAvailable;
Reply
012YES or NO
Sample Code
1234567891011SlimCD *api = [[SlimCD alloc] init];if ([api launchIsAppAvailable]){NSLog(@"App launching is available");}else{NSLog(@"App launching is NOT available");} - ANDROID