30 references to TypeInfo
System.AddIn (30)
System\Addin\Hosting\AddInActivator.cs (1)
315TypeInfo havTypeInfo = new TypeInfo(havType);
System\Addin\Hosting\AddInStore.cs (2)
506TypeInfo havTypeInfo = new TypeInfo(hostViewOfAddIn); 634TypeInfo havTypeInfo = new TypeInfo(hostViewOfAddIn);
System\Addin\Hosting\InspectionWorker.cs (4)
259component = new ContractComponent(new TypeInfo(type), relativeFileName); 266component = new AddInAdapter(new TypeInfo(type), relativeFileName); 288activatableAs[i++] = new TypeInfo((Type)subArg.Value); 293component = new AddInBase(new TypeInfo(type), activatableAs, relativeFileName, assemblyName);
System\Addin\Hosting\Store\AddInAdapter.cs (2)
72_contracts.Add(new TypeInfo(contractInterface)); 88_constructors.Add(new TypeInfo(pars[0].ParameterType));
System\Addin\Hosting\Store\HostAdapter.cs (1)
30private static readonly TypeInfo typeofIContract = new TypeInfo(typeof(System.AddIn.Contract.IContract));
System\Addin\Hosting\Store\PipelineComponent.cs (2)
243return Validate(new TypeInfo(type), warnings); 265TypeInfo objectType = new TypeInfo(typeof(Object));
System\Addin\MiniReflection\MiniParameterInfo.cs (16)
81return new TypeInfo(typeof(Boolean)); 83return new TypeInfo(typeof(SByte)); 85return new TypeInfo(typeof(Byte)); 87return new TypeInfo(typeof(Int16)); 89return new TypeInfo(typeof(UInt16)); 91return new TypeInfo(typeof(Char)); 93return new TypeInfo(typeof(Int32)); 95return new TypeInfo(typeof(UInt32)); 97return new TypeInfo(typeof(Int64)); 99return new TypeInfo(typeof(UInt64)); 101return new TypeInfo(typeof(Single)); 103return new TypeInfo(typeof(Double)); 105return new TypeInfo(typeof(IntPtr)); 107return new TypeInfo(typeof(UIntPtr)); 110return new TypeInfo(typeof(String)); 113return new TypeInfo(typeof(Object));
System\Addin\MiniReflection\TypeInfo.cs (1)
875interfaces.Add(new TypeInfo(interfaceType));
System\Addin\Pipeline\ContractAdapter.cs (1)
79TypeInfo havTypeInfo = new TypeInfo(havType);