예제 #1
0
        protected virtual IEnumerable <Type> GetExposedParameterTypes()
        {
            // filter the slot types because we don't want generic types (i.e lists)
            foreach (var type in NodeProvider.GetSlotTypes())
            {
                if (type.IsGenericType)
                {
                    continue;
                }

                yield return(type);
            }
        }
예제 #2
0
        protected virtual IEnumerable <Type> GetExposedParameterTypes()
        {
            // filter the slot types because we don't want generic types (i.e lists)
            foreach (var type in NodeProvider.GetSlotTypes())
            {
                if (type.IsGenericType || type.FullName == "ConditionalLink" || type.FullName == "RelayNode+PackedRelayData" || type.FullName == "GraphProcessor.BaseGraph")
                {
                    continue;
                }

                yield return(type);
            }
        }