Connectster.Shopify.ShopifyCommunicator.GetShopInformation C# (CSharp) Method

GetShopInformation() public method

public GetShopInformation ( ShopifyStoreAuth storeAuth ) : ShopifyResponse
storeAuth ShopifyStoreAuth
return ShopifyResponse
        public ShopifyResponse<ShopifyShop> GetShopInformation(ShopifyStoreAuth storeAuth)
        {
            XmlDocument retrievedShop = ShopifyGet((_protocol + storeAuth.StoreSubDomain + _domain + "/admin/shop.xml"),
                                                   HashString(_appAuth.Secret + storeAuth.StoreAuthToken));

            return new ShopifyResponse<ShopifyShop>(retrievedShop);
        }