public virtual bool SetCacheProperty(string cacheName, HAPI_CacheProperty cacheProperty, int propertyValue)
		{
			return false;
		}
	public static void setCacheProperty(
		string cache_name, HAPI_CacheProperty cache_property, int property_value )
	{
#if ( UNITY_STANDALONE_WIN || UNITY_STANDALONE_OSX || ( UNITY_METRO && UNITY_EDITOR ) )
		HAPI_Result status_code = HAPI_SetCacheProperty(
			ref mySession, cache_name, cache_property, property_value );
		processStatusCode( status_code );
#else
		throw new HoudiniErrorUnsupportedPlatform();
#endif
	}
		public virtual bool GetCacheProperty(string cacheName, HAPI_CacheProperty cacheProperty, out int propertyValue)
		{
			propertyValue = 0;
			return false;
		}
	HAPI_SetCacheProperty(
		ref HAPI_Session session,
		string cache_name,
		HAPI_CacheProperty cache_property,
		int property_value );