You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
651 B

//-----------------------------------------------------------------------
// <copyright file="IResource.cs" company="Mapbox">
// Copyright (c) 2016 Mapbox. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace Mapbox.Platform
{
using System;
/// <summary>
/// Interface representing a Mapbox resource URL. Used to build request strings
/// and return full URLs to a Mapbox Web Service API resource.
/// </summary>
public interface IResource
{
/// <summary>Builds a complete, valid URL string.</summary>
/// <returns>URL string.</returns>
string GetUrl();
}
}