aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Communications/IGridServices.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/IGridServices.cs b/OpenSim/Framework/Communications/IGridServices.cs
index 177009d..69e8756 100644
--- a/OpenSim/Framework/Communications/IGridServices.cs
+++ b/OpenSim/Framework/Communications/IGridServices.cs
@@ -70,5 +70,20 @@ namespace OpenSim.Framework.Communications
70 List<MapBlockData> RequestNeighbourMapBlocks(int minX, int minY, int maxX, int maxY); 70 List<MapBlockData> RequestNeighbourMapBlocks(int minX, int minY, int maxX, int maxY);
71 // not complete yet, only contains the fields needed for ParcelInfoReqeust 71 // not complete yet, only contains the fields needed for ParcelInfoReqeust
72 LandData RequestLandData(ulong regionHandle, uint x, uint y); 72 LandData RequestLandData(ulong regionHandle, uint x, uint y);
73
74 /// <summary>
75 /// Get information about regions starting with the provided name.
76 /// </summary>
77 /// <param name="name">
78 /// The name to match against.
79 /// </param>
80 /// <param name="maxNumber">
81 /// The maximum number of results to return.
82 /// </param>
83 /// <returns>
84 /// A list of <see cref="RegionInfo"/>s of regions with matching name. If the
85 /// grid-server couldn't be contacted or returned an error, return null.
86 /// </returns>
87 List<RegionInfo> RequestNamedRegions(string name, int maxNumber);
73 } 88 }
74} 89}