Esempio n. 1
0
        public CSImportResponse GetImport(ContactServiceImport service, string username, string password, string userId = "", string echo = "")
        {
            UserId = userId;
            Echo   = echo;

            return(CSImportResponse.ImportResponse(service, Format, username, password, userId, echo));
        }
Esempio n. 2
0
        public static CSImportResponse ImportResponse(ContactServiceImport service, string format, string username, string password, string userId, string echo)
        {
            string importRoot   = string.Format("{0}import.{1}", CloudSponge.BeginImportRoot, format);
            string importFormat = string.Format("{0}?service={{2}}&username={{0}}&password={{1}}&user_id={{3}}&echo={{4}}", importRoot);

            string uri = string.Format(importFormat, username, password, service, userId, echo);

            return(new Uri(uri).GetResponse <CSImportResponse>(CloudSponge.DomainKey, CloudSponge.DomainPassword));
        }