示例#1
0
        public static bool LaunchLinkedInApp(string profileId, LinkedInProfileType profileType, string callback)
        {
            if (Application.platform == RuntimePlatform.Android)
            {
                return(_plugin.CallStatic <bool>("LaunchLinkedInApp", profileId, (int)profileType, callback));
            }

            return(false);
        }
示例#2
0
        public static bool LaunchLinkedInApp(string id, LinkedInProfileType pageType, string callback)
        {
            if (Application.platform == RuntimePlatform.IPhonePlayer)
            {
                return(_LaunchLinkedIn(id, (int)pageType, callback));
            }

            return(false);
        }