Aurora.Addon.HyperGrid.UserAgentServiceConnector.VerifyClient C# (CSharp) Метод

VerifyClient() публичный Метод

public VerifyClient ( UUID sessionID, string token ) : bool
sessionID UUID
token string
Результат bool
        public bool VerifyClient(UUID sessionID, string token)
        {
            Hashtable hash = new Hashtable ();
            hash["sessionID"] = sessionID.ToString ();
            hash["token"] = token;

            IList paramList = new ArrayList ();
            paramList.Add (hash);

            XmlRpcRequest request = new XmlRpcRequest ("verify_client", paramList);
            string reason = string.Empty;
            return GetBoolResponse (request, out reason);
        }