IRestHandler.cs 240 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OpenSim.CAPS
  5. {
  6. public interface IRestHandler
  7. {
  8. string HandleREST(string requestBody, string requestURL, string requestMethod);
  9. }
  10. }