Raven.Studio.StudioViewLocator.PossibleViewTypeNames C# (CSharp) Method

PossibleViewTypeNames() static private method

static private PossibleViewTypeNames ( Type modelType, object context ) : IEnumerable
modelType System.Type
context object
return IEnumerable
		static IEnumerable<string> PossibleViewTypeNames(Type modelType, object context)
		{
			return PossibleViewTypeNamesInternal(modelType.FullName, context)
					.Where(x => x != modelType.FullName);
		}