Bamboo.Prevalence.XPath.TypeInfoCache.GetNavigableProperties C# (CSharp) Метод

GetNavigableProperties() публичный Метод

Return the navigable properties for the object passed as argument. Any readable public property is considered navigable.
public GetNavigableProperties ( object o ) : IValueProvider[]
o object object
Результат IValueProvider[]
		public IValueProvider[] GetNavigableProperties(object o)
		{
			IValueProvider[] properties = (IValueProvider[])_cache[o];
			if (null == properties)
			{
				properties = FindNavigableProperties(o);
				_cache[o] = properties;
			}
			return properties;
		}