ArcGIS4LocalGovernment.AAState.InMemTableExistsForRow C# (CSharp) Method

InMemTableExistsForRow() private static method

private static InMemTableExistsForRow ( ESRI obj ) : bool
obj ESRI
return bool
        private static bool InMemTableExistsForRow(ESRI.ArcGIS.Geodatabase.IObject obj)
        {
            if (AAState._fabricInMemTablesLookUp == null)
                return false;

            int iObjClassID = obj.Class.ObjectClassID;

            if (AAState._fabricInMemTablesLookUp[iObjClassID] != null)
                return true;
            else
                return false;
        }