* Some more CCC
parent
6187888456
commit
84d56bc515
|
@ -22,13 +22,13 @@ namespace OpenSim.Data
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Request sim profile information from a grid server, by Region Handle
|
/// Request sim profile information from a grid server, by Region Handle
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="region_handle">the region handle to look for</param>
|
/// <param name="regionHandle">the region handle to look for</param>
|
||||||
/// <param name="gridserver_url"></param>
|
/// <param name="gridserverUrl"></param>
|
||||||
/// <param name="gridserver_sendkey"></param>
|
/// <param name="gridserverSendkey"></param>
|
||||||
/// <param name="gridserver_recvkey"></param>
|
/// <param name="gridserverRecvkey"></param>
|
||||||
/// <returns>The sim profile. Null if there was a request failure</returns>
|
/// <returns>The sim profile. Null if there was a request failure</returns>
|
||||||
RegionProfileData RequestSimProfileData(ulong region_handle, Uri gridserver_url,
|
RegionProfileData RequestSimProfileData(ulong regionHandle, Uri gridserverUrl,
|
||||||
string gridserver_sendkey, string gridserver_recvkey);
|
string gridserverSendkey, string gridserverRecvkey);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Request sim profile information from a grid server, by Region Name
|
/// Request sim profile information from a grid server, by Region Name
|
||||||
|
|
|
@ -66,15 +66,15 @@ namespace OpenSim.Data
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Request sim profile information from a grid server, by Region Handle
|
/// Request sim profile information from a grid server, by Region Handle
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="region_handle">the region handle to look for</param>
|
/// <param name="regionHandle">the region handle to look for</param>
|
||||||
/// <param name="gridserver_url"></param>
|
/// <param name="gridserverUrl"></param>
|
||||||
/// <param name="gridserver_sendkey"></param>
|
/// <param name="gridserverSendkey"></param>
|
||||||
/// <param name="gridserver_recvkey"></param>
|
/// <param name="gridserverRecvkey"></param>
|
||||||
/// <returns>The sim profile. Null if there was a request failure</returns>
|
/// <returns>The sim profile. Null if there was a request failure</returns>
|
||||||
public RegionProfileData RequestSimProfileData(ulong region_handle, Uri gridserver_url,
|
public RegionProfileData RequestSimProfileData(ulong regionHandle, Uri gridserverUrl,
|
||||||
string gridserver_sendkey, string gridserver_recvkey)
|
string gridserverSendkey, string gridserverRecvkey)
|
||||||
{
|
{
|
||||||
return RequestSimData(gridserver_url, gridserver_sendkey, "region_handle", region_handle.ToString());
|
return RequestSimData(gridserverUrl, gridserverSendkey, "region_handle", regionHandle.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in New Issue