SIL.FieldWorks.CacheLight.RealDataCache.CheckForMetaDataCache C# (CSharp) Method

CheckForMetaDataCache() private method

Makes sure the mdc exists.
Thrown when the 'MetaDataCache' property is null.
private CheckForMetaDataCache ( ) : void
return void
		private void CheckForMetaDataCache()
		{
			if (m_metaDataCache == null)
				throw new ApplicationException("The 'MetaDataCache' property must be set, before using the cache.");
		}