Created
July 7, 2013 13:56
-
-
Save stoolrossa/5943539 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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