Пример #1
0
		public string CalculateChannelKey(Strive.Network.Messages.CommunicationType communicationType, string name)
		{
			string CalculateChannelKey_Return = communicationType.ToString();
			if(communicationType == Strive.Network.Messages.CommunicationType.Tell)
			{
				CalculateChannelKey_Return = name + " - Private conversation";
			}
			return CalculateChannelKey_Return;
		}