GoogleApi.Entities.Places.Delete.Request.PlacesDeleteRequest.GetQueryStringParameters C# (CSharp) Метод

GetQueryStringParameters() защищенный Метод

Get the query string collection of added parameters for the request.
protected GetQueryStringParameters ( ) : QueryStringParametersList
Результат GoogleApi.Helpers.QueryStringParametersList
        protected override QueryStringParametersList GetQueryStringParameters()
        {
            var parameters = base.GetQueryStringParameters();

            if (string.IsNullOrWhiteSpace(this.PlaceId))
                throw new ArgumentException("PlaceId must be provided.");

            return parameters;
        }
PlacesDeleteRequest