From c1320112a9365a95fd2f08af6a97dde8199adf17 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 23 Dec 2008 17:16:47 +0000 Subject: * Add a method to allow friendship offers to a logged in client from an offline user directly from the server --- OpenSim/Framework/UserProfileData.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/UserProfileData.cs b/OpenSim/Framework/UserProfileData.cs index b6f309d..51678e4 100644 --- a/OpenSim/Framework/UserProfileData.cs +++ b/OpenSim/Framework/UserProfileData.cs @@ -200,6 +200,14 @@ namespace OpenSim.Framework get { return _surname; } set { _surname = value; } } + + /// + /// The concatentation of the various name components. + /// + public string Name + { + get { return String.Format("{0} {1}", _firstname, _surname); } + } public string Email { -- cgit v1.1