diff options
author | lbsa71 | 2009-02-12 10:30:53 +0000 |
---|---|---|
committer | lbsa71 | 2009-02-12 10:30:53 +0000 |
commit | 84d56bc5153781c0aeb8ce4474b8fbc7f39725b8 (patch) | |
tree | 7ff41ef809808f991e3cd067530eebdb045d604e /OpenSim | |
parent | * Renamed RegionProfileService to RegionProfileServiceProxy to better reflect... (diff) | |
download | opensim-SC_OLD-84d56bc5153781c0aeb8ce4474b8fbc7f39725b8.zip opensim-SC_OLD-84d56bc5153781c0aeb8ce4474b8fbc7f39725b8.tar.gz opensim-SC_OLD-84d56bc5153781c0aeb8ce4474b8fbc7f39725b8.tar.bz2 opensim-SC_OLD-84d56bc5153781c0aeb8ce4474b8fbc7f39725b8.tar.xz |
* Some more CCC
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Data/IRegionProfileService.cs | 12 | ||||
-rw-r--r-- | OpenSim/Data/RegionProfileServiceProxy.cs | 14 |
2 files changed, 13 insertions, 13 deletions
diff --git a/OpenSim/Data/IRegionProfileService.cs b/OpenSim/Data/IRegionProfileService.cs index 5aa5b58..7c41f1a 100644 --- a/OpenSim/Data/IRegionProfileService.cs +++ b/OpenSim/Data/IRegionProfileService.cs | |||
@@ -22,13 +22,13 @@ namespace OpenSim.Data | |||
22 | /// <summary> | 22 | /// <summary> |
23 | /// Request sim profile information from a grid server, by Region Handle | 23 | /// Request sim profile information from a grid server, by Region Handle |
24 | /// </summary> | 24 | /// </summary> |
25 | /// <param name="region_handle">the region handle to look for</param> | 25 | /// <param name="regionHandle">the region handle to look for</param> |
26 | /// <param name="gridserver_url"></param> | 26 | /// <param name="gridserverUrl"></param> |
27 | /// <param name="gridserver_sendkey"></param> | 27 | /// <param name="gridserverSendkey"></param> |
28 | /// <param name="gridserver_recvkey"></param> | 28 | /// <param name="gridserverRecvkey"></param> |
29 | /// <returns>The sim profile. Null if there was a request failure</returns> | 29 | /// <returns>The sim profile. Null if there was a request failure</returns> |
30 | RegionProfileData RequestSimProfileData(ulong region_handle, Uri gridserver_url, | 30 | RegionProfileData RequestSimProfileData(ulong regionHandle, Uri gridserverUrl, |
31 | string gridserver_sendkey, string gridserver_recvkey); | 31 | string gridserverSendkey, string gridserverRecvkey); |
32 | 32 | ||
33 | /// <summary> | 33 | /// <summary> |
34 | /// Request sim profile information from a grid server, by Region Name | 34 | /// Request sim profile information from a grid server, by Region Name |
diff --git a/OpenSim/Data/RegionProfileServiceProxy.cs b/OpenSim/Data/RegionProfileServiceProxy.cs index 54e392a..998b4ef 100644 --- a/OpenSim/Data/RegionProfileServiceProxy.cs +++ b/OpenSim/Data/RegionProfileServiceProxy.cs | |||
@@ -66,15 +66,15 @@ namespace OpenSim.Data | |||
66 | /// <summary> | 66 | /// <summary> |
67 | /// Request sim profile information from a grid server, by Region Handle | 67 | /// Request sim profile information from a grid server, by Region Handle |
68 | /// </summary> | 68 | /// </summary> |
69 | /// <param name="region_handle">the region handle to look for</param> | 69 | /// <param name="regionHandle">the region handle to look for</param> |
70 | /// <param name="gridserver_url"></param> | 70 | /// <param name="gridserverUrl"></param> |
71 | /// <param name="gridserver_sendkey"></param> | 71 | /// <param name="gridserverSendkey"></param> |
72 | /// <param name="gridserver_recvkey"></param> | 72 | /// <param name="gridserverRecvkey"></param> |
73 | /// <returns>The sim profile. Null if there was a request failure</returns> | 73 | /// <returns>The sim profile. Null if there was a request failure</returns> |
74 | public RegionProfileData RequestSimProfileData(ulong region_handle, Uri gridserver_url, | 74 | public RegionProfileData RequestSimProfileData(ulong regionHandle, Uri gridserverUrl, |
75 | string gridserver_sendkey, string gridserver_recvkey) | 75 | string gridserverSendkey, string gridserverRecvkey) |
76 | { | 76 | { |
77 | return RequestSimData(gridserver_url, gridserver_sendkey, "region_handle", region_handle.ToString()); | 77 | return RequestSimData(gridserverUrl, gridserverSendkey, "region_handle", regionHandle.ToString()); |
78 | } | 78 | } |
79 | 79 | ||
80 | /// <summary> | 80 | /// <summary> |