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

get_IsDummyId() public method

Member get_IsDummyId
public get_IsDummyId ( int hvo ) : bool
hvo int hvo
return bool
		public bool get_IsDummyId(int hvo)
		{
			CheckDisposed();

			if (hvo == 0)
				throw new ArgumentException("'hvo' cannot be 0.");

			return false; //(Review JohnT: is this right? Does this cache have dummy objects?)
		}