Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stoolrossa/5943539 to your computer and use it in GitHub Desktop.
Save stoolrossa/5943539 to your computer and use it in GitHub Desktop.
using System.Collections.Specialized;
using ESRI.ArcGIS.Geodatabase;
using ESRI.ArcGIS.SOESupport;
namespace Blog.SoeExample.Service
{
public interface IExampleService
{
// workspace dependency
IWorkspace Workspace { get; set; }
// setLandUseSelection service method
byte[] GetLandUseSelection(NameValueCollection boundVariables,
JsonObject operationInput,
string outputFormat,
string requestProperties,
out string responseProperties);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment