Cucumber.SimpleDb.Transport.SimpleDbRestService.GetDomainMeta C# (CSharp) Method

GetDomainMeta() public method

public GetDomainMeta ( string domain ) : System.Xml.Linq.XElement
domain string
return System.Xml.Linq.XElement
        public XElement GetDomainMeta(string domain)
        {
            var values = new NameValueCollection
            {
                {"Action", "DomainMetadata"},
                {"DomainName", domain}
            };
            return InternalExecute(values);
        }