SIL.FieldWorks.Common.Framework.DetailControls.Slice.Slice.IsOrInheritsFrom C# (CSharp) Méthode

IsOrInheritsFrom() private méthode

Answer whether clidTest is, or is a subclass of, clidSig. That is, either clidTest is the same as clidSig, or one of the base classes of clidTest is clidSig. As a special case, if clidSig is 0, all classes are considered to match
private IsOrInheritsFrom ( int clidTest, int clidSig ) : bool
clidTest int
clidSig int
Résultat bool
		bool IsOrInheritsFrom(int clidTest, int clidSig)
		{
			CheckDisposed();

			return Cache.ClassIsOrInheritsFrom(clidTest, clidSig);
		}