SILUBS.ScriptureChecks.CharactersCheck.GetValidCharacters C# (CSharp) Method

GetValidCharacters() private method

Gets the valid characters list for the specified locale.
private GetValidCharacters ( string locale ) : string
locale string
return string
		private string GetValidCharacters(string locale)
		{
			string parameter = (string.IsNullOrEmpty(locale) ?
				kValidItemsParameter : kValidItemsParameter + "_" + locale);

			string validChars = m_checksDataSource.GetParameterValue(parameter);
			validChars = validChars ?? string.Empty;

			return validChars;
		}