aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/RegionProfileServiceProxy.cs
diff options
context:
space:
mode:
authorlbsa712009-02-12 10:30:53 +0000
committerlbsa712009-02-12 10:30:53 +0000
commit84d56bc5153781c0aeb8ce4474b8fbc7f39725b8 (patch)
tree7ff41ef809808f991e3cd067530eebdb045d604e /OpenSim/Data/RegionProfileServiceProxy.cs
parent* Renamed RegionProfileService to RegionProfileServiceProxy to better reflect... (diff)
downloadopensim-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 '')
-rw-r--r--OpenSim/Data/RegionProfileServiceProxy.cs14
1 files changed, 7 insertions, 7 deletions
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>