SIL.FieldWorks.XWorks.InterestingTextList.GetCoreTexts C# (CSharp) Method

GetCoreTexts() private method

Get the "core" (non-scripture) texts that we want to display. This is all the ones not on the excluded list.
private GetCoreTexts ( ) : List
return List
		private List<IStText> GetCoreTexts()
		{
			var result = AllCoreTexts.ToList();
			if (m_propertyTable == null)
				return result;
			var excludedGuids = ExcludedCoreTextIdList();
			if (excludedGuids.Count == 0)
				return result;
			return (from obj in result where !excludedGuids.Contains(obj.Guid) select obj).ToList();
		}