minor: Add documentation to IGridService.GetRegionFlags()
parent
a0d047413b
commit
ef3cc2e507
|
@ -34,6 +34,7 @@ namespace OpenSim.Framework
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// Don't confuse with OpenMetaverse.RegionFlags which are client facing flags (i.e. they go over the wire).
|
/// Don't confuse with OpenMetaverse.RegionFlags which are client facing flags (i.e. they go over the wire).
|
||||||
|
/// Returned by IGridService.GetRegionFlags()
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
[Flags]
|
[Flags]
|
||||||
public enum RegionFlags : int
|
public enum RegionFlags : int
|
||||||
|
|
|
@ -100,6 +100,19 @@ namespace OpenSim.Services.Interfaces
|
||||||
List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y);
|
List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y);
|
||||||
List<GridRegion> GetHyperlinks(UUID scopeID);
|
List<GridRegion> GetHyperlinks(UUID scopeID);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get internal OpenSimulator region flags.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// See OpenSimulator.Framework.RegionFlags. These are not returned in the GridRegion structure -
|
||||||
|
/// they currently need to be requested separately. Possibly this should change to avoid multiple service calls
|
||||||
|
/// in some situations.
|
||||||
|
/// </remarks>
|
||||||
|
/// <returns>
|
||||||
|
/// The region flags.
|
||||||
|
/// </returns>
|
||||||
|
/// <param name='scopeID'></param>
|
||||||
|
/// <param name='regionID'></param>
|
||||||
int GetRegionFlags(UUID scopeID, UUID regionID);
|
int GetRegionFlags(UUID scopeID, UUID regionID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue