19 references to TlcModule
Microsoft.ML.Core (19)
ComponentModel\ComponentCatalog.cs (12)
341TlcModule.EntryPointAttribute attribute, ObsoleteAttribute obsoleteAttribute) 372var kindAttr = type.GetTypeInfo().GetCustomAttributes(typeof(TlcModule.EntryPointKindAttribute), false).FirstOrDefault() 373as TlcModule.EntryPointKindAttribute; 405internal ComponentInfo(Type interfaceType, string kind, Type argumentType, TlcModule.ComponentAttribute attribute) 569var attr = methodInfo.GetCustomAttributes(typeof(TlcModule.EntryPointAttribute), false).FirstOrDefault() as TlcModule.EntryPointAttribute; 596var attr = nestedType.GetTypeInfo().GetCustomAttributes(typeof(TlcModule.ComponentAttribute), true).FirstOrDefault() 597as TlcModule.ComponentAttribute; 604var faceAttr = faceType.GetTypeInfo().GetCustomAttributes(typeof(TlcModule.ComponentKindAttribute), false).FirstOrDefault() 605as TlcModule.ComponentKindAttribute; 939var faceAttr = signatureType.GetTypeInfo().GetCustomAttributes(typeof(TlcModule.ComponentKindAttribute), false).FirstOrDefault() 940as TlcModule.ComponentKindAttribute;
Data\ServerChannel.cs (1)
142[TlcModule.ComponentKind("Server")]
EntryPoints\EntryPointUtils.cs (6)
17private static readonly FuncStaticMethodInfo1<TlcModule.RangeAttribute, object, bool> _isValueWithinRangeMethodInfo 18= new FuncStaticMethodInfo1<TlcModule.RangeAttribute, object, bool>(IsValueWithinRange<int>); 20private static bool IsValueWithinRange<T>(TlcModule.RangeAttribute range, object obj) 35public static bool IsValueWithinRange(this TlcModule.RangeAttribute range, object val) 84var rangeAttr = fieldInfo.GetCustomAttributes(typeof(TlcModule.RangeAttribute), false).FirstOrDefault() 85as TlcModule.RangeAttribute;