IfcDoc.Schema.SEntity.GetFieldsInverse C# (CSharp) Méthode

GetFieldsInverse() public static méthode

public static GetFieldsInverse ( Type type ) : IList
type System.Type
Résultat IList
        public static IList<FieldInfo> GetFieldsInverse(Type type)
        {
            IList<FieldInfo> fields = null;
            if (s_inversemap.TryGetValue(type, out fields))
            {
                return fields;
            }

            fields = new List<FieldInfo>();
            BuildFieldList(type, fields, FieldScope.Inverse);
            s_inversemap.Add(type, fields);

            return fields;
        }