Exemple #1
0
        public List <PlatformActivityLog> GetPlatformLogByUser(string userId, int maxRecords, string sharedClientKey)
        {
            // Ensure the clients are certified.
            if (sharedClientKey != Sahara.Core.Platform.Requests.RequestManager.SharedClientKey)
            {
                return(null);
            }

            return(PlatformLogManager.GetPlatformLogByUser(userId, maxRecords));
        }