TradeMe.Api.Client.SearchMethods.PropertyConnectionHelper C# (CSharp) Метод

PropertyConnectionHelper() приватный Метод

A helper method for performing the http request for property requests - using the url provided.
private PropertyConnectionHelper ( string url ) : global::Properties
url string The url used to connect to the API.
Результат global::Properties
        private global::Properties PropertyConnectionHelper(string url)
        {
            var getRequest = _connection.UnauthenticatedConnection(url);
            var xml = getRequest.ToString();

            return Deserializer<global::Properties>.Deserialize(new global::Properties(), xml);
        }