System.Web.Caching.OutputCache.IsInvalidType C# (CSharp) Method

IsInvalidType() static private method

static private IsInvalidType ( object data ) : bool
data object
return bool
		static bool IsInvalidType (object data)
		{
			return !(data is MemoryResponseElement) &&
				!(data is FileResponseElement) &&
				!(data is SubstitutionResponseElement);
		}