예제 #1
0
        public PlatformInvitation GetPlatformUserInvitation(string invitationKey, string sharedClientKey)
        {
            // Ensure the clients are certified.
            if (sharedClientKey != Sahara.Core.Platform.Requests.RequestManager.SharedClientKey)
            {
                return(null);
            }

            return(PlatformUserManager.GetInvitation(invitationKey));
        }